fawkss/tests/mixins/02-nested.scss

29 lines
330 B
SCSS

//
// Tests nested mixins.
//
--- TEST ---
@mixin invisible-ink {
color: white;
background-color: white;
}
@mixin invisible-box {
@include invisible-ink;
border: none;
}
#boxy-mcboxface {
@include invisible-box;
}
--- EXPECTED ---
#boxy-mcboxface {
color: white;
background-color: white;
border: none;
}
--- END ---