mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
65 lines
1.3 KiB
SCSS
65 lines
1.3 KiB
SCSS
/*----------------------------------------------------------------*/
|
|
/* Print
|
|
/*----------------------------------------------------------------*/
|
|
|
|
@media all {
|
|
|
|
/* Never show page breaks in normal view */
|
|
.page-break-after,
|
|
.page-break-before {
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
|
|
@media print {
|
|
|
|
/* html and body tweaks */
|
|
html, body {
|
|
height: auto !important;
|
|
overflow: initial !important;
|
|
}
|
|
|
|
/* Page breaks */
|
|
.page-break-after {
|
|
display: block;
|
|
page-break-after: always;
|
|
position: relative;
|
|
}
|
|
|
|
.page-break-before {
|
|
display: block;
|
|
page-break-before: always;
|
|
position: relative;
|
|
}
|
|
|
|
/* General styles */
|
|
app {
|
|
|
|
fuse-navbar-vertical,
|
|
fuse-navbar-horizontal,
|
|
fuse-toolbar,
|
|
fuse-footer,
|
|
fuse-quick-panel,
|
|
fuse-theme-options,
|
|
.ps > .ps__rail-x,
|
|
.ps > .ps__rail-y {
|
|
display: none !important;
|
|
}
|
|
|
|
.ps {
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.mat-drawer-container,
|
|
.mat-sidenav-container {
|
|
background-color: white !important;
|
|
|
|
.mat-drawer-content,
|
|
.mat-sidenav-content {
|
|
overflow: initial !important;
|
|
height: auto !important
|
|
}
|
|
}
|
|
}
|
|
} |