1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 04:49:12 +02:00

Fix issue with "My filters" pane on mobile

Related issue:
https://github.com/uBlockOrigin/uBlock-issues/issues/3058
This commit is contained in:
Raymond Hill 2024-03-05 08:00:42 -05:00
parent 185ff3fd96
commit 24d94e559d
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -2,7 +2,6 @@ html, body {
display: flex;
flex-direction: column;
height: 100vh;
height: 100svh;
justify-content: stretch;
overflow: hidden;
position: relative;
@ -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;