Skip to content

Commit 102dc4a

Browse files
committed
Update division syntax in example project
1 parent ee12973 commit 102dc4a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

example-project/scss/config/_base-font.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use 'sass:math';
2+
13
// Base Font
24
// ---------------------------------------------------------
35
//
@@ -7,4 +9,4 @@
79
// ---------------------------------------------------------
810

911
$base-font-size: 16;
10-
$base-line-height: 24 / $base-font-size;
12+
$base-line-height: math.div(24, $base-font-size);

0 commit comments

Comments
 (0)