Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mobile-nixos/mobile-nixos
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 25e9db547462
Choose a base ref
...
head repository: mobile-nixos/mobile-nixos
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8c8bed6aced9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 5, 2021

  1. doc: Fix lessc maths breaking change

    Fixes #276
    samueldr committed Jan 5, 2021
    Copy the full SHA
    4c5d43a View commit details
  2. Merge pull request #277 from samueldr-wip/fix/276-less-regression

    doc: Fix lessc maths breaking change
    samueldr authored Jan 5, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8c8bed6 View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 doc/_support/styles/default.nix
3 changes: 2 additions & 1 deletion doc/_support/styles/default.nix
Original file line number Diff line number Diff line change
@@ -27,7 +27,8 @@ stdenv.mkDerivation {
done
mkdir -p $out
lessc index.less $out/styles.css
# --math=always to use 3.x compatible maths with lessc 4.x
lessc --math=always index.less $out/styles.css
'';

dontInstall = true;