1
0
mirror of https://github.com/deuill/fawkss.git synced 2024-09-28 04:02:43 +00:00
fawkss/tests/02-variables.scss

26 lines
442 B
SCSS

//
// Simple variable tests for Fawkss.
//
--- TEST ---
$width : 100%;
$__height1:10px;
$12color: black;
$grad_col : red;
.test-element {
color:$12color; background-color: $12color;
height: $__height1; width: $width;
linear-gradient(45deg, $grad_col, $grad_col);
}
--- EXPECTED ---
.test-element {
color:black; background-color: black;
height: 10px; width: 100%;
linear-gradient(45deg, red, red);
}
--- END ---