Fixes #3598 by adding overflow scrolling to StoreSelectorMenu (#3599)

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
This commit is contained in:
Lee Salminen 2022-04-05 05:34:14 -06:00 committed by GitHub
parent 28ce095fb4
commit add206ae2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,7 @@ namespace BTCPayServer.Components.StoreSelector
WalletId = walletId
};
})
.OrderBy(s => s.Text)
.ToList();
var vm = new StoreSelectorViewModel

View File

@ -174,6 +174,8 @@
#StoreSelectorMenu {
min-width: 100%;
max-height: calc(100vh - var(--header-height));
overflow-y: scroll;
}
/* Logo */