// 定义一个变量
$my-variable: blue;
// 检查变量是否存在
@if variable-exists(my-variable) {
body {
background: $my-variable; // 如果变量存在,使用变量的值
}
} @else {
body {
background: black; // 如果变量不存在,使用默认值
}
}
03-01
1652

03-27
2282

08-04
2278

07-01
588

04-22
1944
