Files
notifications-admin/app/assets/stylesheets/govuk_template/styleguide/_conditionals2.scss
Rebecca Law 11d79951f3 Moved the templates into the app directory.
Added Manager to the app.py
2015-11-23 16:07:19 +00:00

22 lines
428 B
SCSS

// Media query helpers. These make producing IE layouts
// super easy.
// These are desktop and down media queries
$is-ie: false !default;
@mixin media-down($size: false, $max-width: false, $min-width: false) {
@if $is-ie == false {
@if $size == mobile {
@media (max-width: 640px){
@content;
}
} @else if $size == tablet {
@media (max-width: 800px){
@content;
}
}
}
}