Add from and until mixins docs

This commit is contained in:
Jeremy Thomas
2021-09-20 00:34:41 +01:00
parent f6c0cfc813
commit 009ec28a6d
4 changed files with 149 additions and 4 deletions

View File

@@ -249,3 +249,11 @@ $navbar-breakpoint: $tablet;
@import "./_sass/global/cc";
@import "./_sass/examples/mixins";
.my-element {
background: red;
@include from(1280px) {
background: blue;
}
}