1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Fix font-face $dir error | Update description comments to SASS synthax

This commit is contained in:
Lucas Vallenet
2022-05-02 16:56:25 +02:00
parent 47974a77a9
commit cabeba55c0
8 changed files with 27 additions and 27 deletions

View File

@@ -10,14 +10,14 @@
// 3. Set the default `font-size` and `line-height` for the entire project,
// sourced from our default variables.
@include font-faces($font-faces, $font-dir); /* [1] */
@include font-faces($font-faces, $font-dir); // [1]
html {
min-height: 100%; /* [2] */
min-height: 100%; // [2]
line-height: $line-height;
font-family: ff("sans");
color: $color;
line-height: $line-height; /* [3] */
line-height: $line-height; // [3]
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -34,7 +34,7 @@ html {
}
@media (min-width: $from-large) and (max-width: $to-huge) {
font-size: $font-size; /* [1] */
font-size: $font-size; // [1]
}
@media (min-width: $from-huge) and (max-width: $to-gigantic) {