Files
5etools-mirror-2.github.io/scss/includes/util-print.scss
TheGiddyLimit 8117ebddc5 v1.198.1
2024-01-01 19:34:49 +00:00

27 lines
362 B
SCSS

@import "vars";
@include is-print {
.no-print {
display: none !important;
}
.print__ {
&ve-block {
display: block !important;
}
&h-initial {
height: initial !important;
}
&overflow-visible {
overflow: visible !important;
}
&my-2 {
margin-top: ($spacer * 0.5) !important;
margin-bottom: ($spacer * 0.5) !important;
}
}
}