Skip to content

Commit

Permalink
Fix bottom drawer actions not appearing due to vh issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
wpalani committed Dec 30, 2022
1 parent 2dfc7ab commit cf0825e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/header/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ header img.noteski-logo {
}

#menu-container {
min-height: 100vh;
max-height: 100vh;
min-height: 100dvh;
max-height: 100dvh;
display: flex;
justify-content: flex-end;
position: relative;
Expand Down
4 changes: 2 additions & 2 deletions src/components/header/menuActions/ClearStorageNotice.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
}

#clear-storage-notice-container {
min-height: 100vh;
max-height: 100vh;
min-height: 100dvh;
max-height: 100dvh;
display: flex;
align-items: end;
position: relative;
Expand Down
4 changes: 2 additions & 2 deletions src/components/newUserNotice/NewUserNotice.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
}

#new-user-notice-container {
min-height: 100vh;
max-height: 100vh;
min-height: 100dvh;
max-height: 100dvh;
display: flex;
align-items: end;
position: relative;
Expand Down

0 comments on commit cf0825e

Please sign in to comment.