UI: Make store selector list scrollable if necessary (#5760)

Fixes #5754.
This commit is contained in:
d11n 2024-02-21 13:34:47 +01:00 committed by GitHub
parent 33d3a25928
commit 42a8160768
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -219,8 +219,10 @@
#StoreSelectorMenu { #StoreSelectorMenu {
min-width: 100%; min-width: 100%;
max-height: calc(100vh - var(--header-height)); overflow-y: auto;
overflow-y: scroll; /* gradually try to set better but less supported values and units */
max-height: calc(100vh - var(--header-height) - var(--btcpay-space-xxl));
max-height: calc(100dvh - var(--header-height));
} }
/* Logo */ /* Logo */