1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-09-10 23:06:01 +00:00

hide desktop navbar when in mobile resolution

This commit is contained in:
quarz12
2025-04-02 20:53:22 +02:00
parent dbdaa0884e
commit 8c98b91a25

View File

@@ -26,3 +26,9 @@ body.serieslist.grid-view div.container-fluid > div > div.col-sm-10::before {
input.datepicker {color: transparent}
input.datepicker:focus {color: transparent}
input.datepicker:focus + input {color: #555}
@media only screen and (max-width: 767px) {
.row-fluid > .col-sm-2 {
visibility: hidden;
}
}