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:
commit
a6155f7b24
|
@ -226,4 +226,13 @@
|
||||||
border: 1px solid var(--spectrum-global-color-gray-300);
|
border: 1px solid var(--spectrum-global-color-gray-300);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Print styles */
|
||||||
|
@media print {
|
||||||
|
#spectrum-root,
|
||||||
|
#clip-root,
|
||||||
|
#app-root {
|
||||||
|
overflow: visible !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -427,4 +427,20 @@
|
||||||
height: var(--height);
|
height: var(--height);
|
||||||
z-index: 998;
|
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>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue