We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1362ede commit b0c19d1Copy full SHA for b0c19d1
infrastructure/eid-wallet/src/lib/ui/Drawer/Drawer.svelte
@@ -83,7 +83,9 @@ $effect(() => {
83
padding-block-start: 50px !important;
84
padding-block-end: 20px !important;
85
background-color: var(--color-white) !important;
86
- overflow: hidden !important; /* Prevents content overflow */
+ overflow-y: auto !important; /* vertical scroll if needed */
87
+ overflow-x: hidden !important; /* prevent sideways scroll */
88
+ -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
89
}
90
91
:global(.move) {
0 commit comments