Skip to content

Commit

Permalink
Fix overflown instructions in drawer (#250)
Browse files Browse the repository at this point in the history
On lower DPI displays (or when zoomed in on the page) the drawer was sticking out of visible area and was inaccessible. These CSS rules fix it.
  • Loading branch information
Pawloland authored Feb 23, 2024
1 parent 8b9148f commit 1904052
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/drawer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
max-width: 380px;
z-index: 11;
border-radius: 8px !important;
max-height: calc(100vh - 20px);
overflow: auto;

.logo {
height: 30px;
Expand Down

0 comments on commit 1904052

Please sign in to comment.