1
0
Fork 0
mirror of synced 2024-07-08 15:56:23 +12:00

Merge pull request #4872 from Budibase/add-print-styles

Add css print styles to ensure multi-page print is possible
This commit is contained in:
Martin McKeaveney 2022-03-21 08:34:55 +00:00 committed by GitHub
commit 35facc8cb1
2 changed files with 25 additions and 0 deletions

View file

@ -226,4 +226,13 @@
border: 1px solid var(--spectrum-global-color-gray-300);
border-radius: 4px;
}
/* Print styles */
@media print {
#spectrum-root,
#clip-root,
#app-root {
overflow: visible !important;
}
}
</style>

View file

@ -427,4 +427,20 @@
height: var(--height);
z-index: 998;
}
/* Print styles */
@media print {
.layout,
.main-wrapper {
overflow: visible !important;
}
.nav-wrapper {
display: none !important;
}
.layout {
flex-direction: column !important;
justify-content: flex-start !important;
align-items: stretch !important;
}
}
</style>