diff --git a/scss/generic/_utilities.scss b/scss/generic/_utilities.scss index 3670df2..f17efd6 100755 --- a/scss/generic/_utilities.scss +++ b/scss/generic/_utilities.scss @@ -55,3 +55,27 @@ img.aligncenter { .sr-only { display: none; } + + +/** + * Responsive + */ + +@each $breakpoint in $breakpoints { + + $key : nth($breakpoint, 1); + $value : nth($breakpoint, 2); + + .visible-#{$key} { + @media only screen and #{$value} { + display: block !important; + } + } + + .hidden-#{$key} { + @media only screen and #{$value} { + display: none !important; + } + } + +}