12 lines
168 B
SCSS
12 lines
168 B
SCSS
|
@import "./variables";
|
||
|
|
||
|
@media print {
|
||
|
header, footer {
|
||
|
display: none;
|
||
|
}
|
||
|
body {
|
||
|
background: none;
|
||
|
background-color: $white;
|
||
|
}
|
||
|
}
|