Skip to content

Commit

Permalink
Fix issue with "My filters" pane on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Mar 5, 2024
1 parent 185ff3f commit 24d94e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/css/dashboard.css
Expand Up @@ -2,7 +2,6 @@ html, body {
display: flex;
flex-direction: column;
height: 100vh;
height: 100svh;
justify-content: stretch;
overflow: hidden;
position: relative;
Expand Down Expand Up @@ -107,6 +106,9 @@ body.noDashboard #dashboard-nav {
}

/* touch-screen devices */
:root.mobile, :root.mobile body {
height: 100svh;
}
:root.mobile #dashboard-nav {
flex-wrap: nowrap;
overflow-x: auto;
Expand Down

0 comments on commit 24d94e5

Please sign in to comment.