mirror of
https://github.com/Kornstalx/5etools-mirror-2.github.io.git
synced 2025-10-28 20:45:35 -05:00
27 lines
386 B
SCSS
27 lines
386 B
SCSS
@use "../vars/vars";
|
|
|
|
@include vars.mix-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: (vars.$spacer * 0.5) !important;
|
|
margin-bottom: (vars.$spacer * 0.5) !important;
|
|
}
|
|
}
|
|
}
|