21 lines
287 B
SCSS
21 lines
287 B
SCSS
|
@media print {
|
||
|
a {
|
||
|
@include plain() {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
@include hover() {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
@include active() {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
img,
|
||
|
tr,
|
||
|
pre,
|
||
|
blockquote {
|
||
|
page-break-inside: avoid;
|
||
|
}
|
||
|
}
|