Remove _sass directory and add package-lock.json to .gitignore

This commit is contained in:
Stef Coetzee 2021-07-17 16:09:16 +02:00
parent 40ce5b1e6f
commit ede254fe7d
2 changed files with 2 additions and 10 deletions

3
.gitignore vendored
View File

@ -10,4 +10,5 @@ _site/
Gemfile.lock
# JavaScript
node_modules
node_modules
package-lock.json

View File

@ -1,9 +0,0 @@
$backgroundColor: #ffffff;
$bodyColor: #000000;
$bodyFont: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
body {
background: $backgroundColor;
color: $bodyColor;
font-family: $bodyFont;
}