summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/variable-defaults-with-null.scss
blob: 0bfa37430431d9f0009f9721de7c68f1f353cd17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$var: null;
$var: "Non-null" !default;

$var2: null;
$var2: "Also non-null" !default;
$var2: "Null content" !default;

$list-of-nulls: null null;
$list-of-nulls: "Non-null" !default; 

$mixed-list: null "Not null" null;
$mixed-list: "null" !default;

.test {
    first: $var;
    second: $var2;
    hidden: $list-of-nulls;
    third: $mixed-list;
}