Patch viewer to full screen

old-stable24
Varun Patil 2022-10-25 21:46:23 -07:00
parent f5b2265e23
commit 8b7d2ab4a4
1 changed files with 13 additions and 0 deletions

View File

@ -169,10 +169,23 @@ body {
width: calc(100% - var(--body-container-margin)*1); // was *2
}
// Prevent content overflow on NC <25
#content-vue {
max-height: 100vh;
}
// Patch viewer to remove the title and
// make the image fill the entire screen
.viewer {
.modal-title {
display: none;
}
.modal-wrapper .modal-container {
top: 0 !important;
bottom: 0 !important;
}
}
// Hide horizontal scrollbar on mobile
// For the padding removal above
#app-content-vue {