1
0
Fork 0
mirror of synced 2024-08-09 23:28:01 +12:00

Merge pull request #5844 from Budibase/fix/print-styles

Update print styles to work with dev tools update
This commit is contained in:
Martin McKeaveney 2022-05-12 18:24:32 +01:00 committed by GitHub
commit 9e4928739c
3 changed files with 12 additions and 1 deletions

View file

@ -283,7 +283,8 @@
@media print {
#spectrum-root,
#clip-root,
#app-root {
#app-root,
#app-body {
overflow: visible !important;
}
}

View file

@ -66,4 +66,9 @@
.tab-content {
padding: 0 var(--spacing-xl);
}
@media print {
.devtools {
display: none;
}
}
</style>

View file

@ -71,4 +71,9 @@
.dev-preview-header :global(.spectrum-Picker-label) {
color: white !important;
}
@media print {
.dev-preview-header {
display: none;
}
}
</style>