Testing styles

This commit is contained in:
2018-06-06 07:57:07 +10:00
parent 2e8c450b70
commit 03f0dd8dc3
4 changed files with 3279 additions and 1 deletions

View File

@ -0,0 +1,26 @@
/*
* Responsive Utilities
* Provides Common Responsive Class Utilities
*
* Dependencies:
* styles/settings/responsive.scss
* styles/tools/_responsive.scss
*
* Version:
* 1.0.0 - 2018/06/05
*/
@each $breakpoint in $s-breakpoints {
$name: nth($breakpoint, 1);
$declaration: nth($breakpoint, 2);
.u-responsive--#{$name} {
display: none;
}
@include t-media-query($name) {
.u-responsive--#{$name} {
display: block;
}
}
}