Skip to content

Commit

Permalink
Switch back to @import
Browse files Browse the repository at this point in the history
Version of jekyll-sass-converter used by Github Pages is too old to support @use: github/pages-gem#813
  • Loading branch information
BadIdeaException committed Feb 16, 2023
1 parent db0d2c1 commit b209686
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _sass/base.scss
@@ -1,4 +1,4 @@
@use 'colors';
@import 'colors';

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

Expand All @@ -12,6 +12,6 @@ body {
font-weight: 300;
font-size: 10pt;

background: colors.$background;
color: colors.$text;
background:$background;
color: $text;
}

0 comments on commit b209686

Please sign in to comment.