21 lines
240 B
SCSS

@charset "UTF-8";
@import "base/generic";
.showInPrintView {
display: none;
}
.language-text {
overflow-wrap: break-word;
}
@media print {
.hideInPrintView {
display: none;
}
.showInPrintView {
display: initial;
}
}