mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
UI: Make store selector list scrollable if necessary (#5760)
Fixes #5754.
This commit is contained in:
parent
33d3a25928
commit
42a8160768
1 changed files with 4 additions and 2 deletions
|
@ -219,8 +219,10 @@
|
|||
|
||||
#StoreSelectorMenu {
|
||||
min-width: 100%;
|
||||
max-height: calc(100vh - var(--header-height));
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
/* 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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue