7 lines
163 B
SCSS
7 lines
163 B
SCSS
// Adds a simple extend that indicates that this user interface element should not print
|
|
%ui-print-excluded {
|
|
@media print {
|
|
display: none !important;
|
|
}
|
|
}
|