diff options
| -rw-r--r-- | test/manual/indent/scss-mode.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/manual/indent/scss-mode.scss b/test/manual/indent/scss-mode.scss index 189ec4e22ac..2cd4adb8d55 100644 --- a/test/manual/indent/scss-mode.scss +++ b/test/manual/indent/scss-mode.scss | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | // Comment! | 1 | // Comment! |
| 2 | 2 | ||
| 3 | @use "sass:math"; | ||
| 4 | |||
| 3 | nav { | 5 | nav { |
| 4 | ul { | 6 | ul { |
| 5 | margin: 0; /* More comment */ | 7 | margin: 0; /* More comment */ |
| @@ -44,8 +46,8 @@ article[role="main"] { | |||
| 44 | $var_with_underscores: #fff; | 46 | $var_with_underscores: #fff; |
| 45 | $_var-starting-with-underscore: none; | 47 | $_var-starting-with-underscore: none; |
| 46 | float: left !important; | 48 | float: left !important; |
| 47 | width: 600px / 888px * 100%; | 49 | width: math.div(600px, 888px) * 100%; |
| 48 | height: 100px / 888px * 100%; | 50 | height: math.div(100px, 888px) * 100%; |
| 49 | color: $var_with_underscores; | 51 | color: $var_with_underscores; |
| 50 | display: $_var-starting-with-underscore; | 52 | display: $_var-starting-with-underscore; |
| 51 | } | 53 | } |