Files
notifications-admin/assets/stylesheets/govuk_template/styleguide/_print.scss
2015-11-23 13:50:37 +00:00

25 lines
405 B
SCSS

// Print helpers. These make producing print layouts
// super easy.
// The base css you write should be for screen. You can
// then add print styles on top.
//
// Usage:
//
// table th {
// border: 1px solid;
// background-color: #ddd;
//
// @include print{
// background-color: white;
// }
// }
$is-print: false !default;
@mixin print {
@if $is-print {
@content;
}
}