Files
Grav-Admin-Plugin/theme-old/scss/modules/_mediaquery.scss

10 lines
236 B
SCSS
Raw Normal View History

2014-08-05 13:06:38 -07:00
// Media Queries
@mixin mediaquery($point) {
@if $point == large {
@media only screen and (min-width: $mobile-break) { @content; }
}
@else if $point == small {
@media only screen and (max-width: $mobile-break) { @content; }
}
}