mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 10:16:21 +02:00
21 lines
248 B
SCSS
21 lines
248 B
SCSS
@charset "UTF-8";
|
|
|
|
@use "base/generic";
|
|
|
|
.showInPrintView {
|
|
display: none;
|
|
}
|
|
|
|
.language-text {
|
|
overflow-wrap: break-word !important;
|
|
}
|
|
|
|
@media print {
|
|
.hideInPrintView {
|
|
display: none;
|
|
}
|
|
|
|
.showInPrintView {
|
|
display: initial;
|
|
}
|
|
} |