mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 06:38:24 -04:00
25 lines
405 B
SCSS
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;
|
|
}
|
|
}
|