Merge pull request #5844 from Budibase/fix/print-styles
Update print styles to work with dev tools update
This commit is contained in:
commit
bd862c630a
|
@ -283,7 +283,8 @@
|
||||||
@media print {
|
@media print {
|
||||||
#spectrum-root,
|
#spectrum-root,
|
||||||
#clip-root,
|
#clip-root,
|
||||||
#app-root {
|
#app-root,
|
||||||
|
#app-body {
|
||||||
overflow: visible !important;
|
overflow: visible !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,4 +66,9 @@
|
||||||
.tab-content {
|
.tab-content {
|
||||||
padding: 0 var(--spacing-xl);
|
padding: 0 var(--spacing-xl);
|
||||||
}
|
}
|
||||||
|
@media print {
|
||||||
|
.devtools {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -71,4 +71,9 @@
|
||||||
.dev-preview-header :global(.spectrum-Picker-label) {
|
.dev-preview-header :global(.spectrum-Picker-label) {
|
||||||
color: white !important;
|
color: white !important;
|
||||||
}
|
}
|
||||||
|
@media print {
|
||||||
|
.dev-preview-header {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue