summaryrefslogtreecommitdiff
path: root/_sass/common/_print.scss
blob: d798d87ace5ffef3a9faa8434f6e0fa607c2e1bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@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;
  }
}