feat: hide the UI elements when printing the page (#1680)

This commit is contained in:
Youness Fkhach 2020-05-30 21:51:28 +01:00 committed by GitHub
parent f413bab3de
commit 9151da772c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -484,3 +484,11 @@ button,
.disable-pointerEvents {
pointer-events: none !important;
}
@media print {
.App-bottom-bar,
.FixedSideContainer,
.layer-ui__wrapper {
display: none;
}
}