1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix searchable item list height (#19634)

This commit is contained in:
Daniel 2023-06-16 15:06:25 +02:00 committed by GitHub
parent 9a47ccf3cd
commit 1aae94fedc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
.list-with-search { .list-with-search {
.searchable-item-list { .searchable-item-list {
&__list-container { &__list-container {
height: 320px; max-height: 320px;
overflow-y: auto; overflow-y: auto;
padding-right: 8px; padding-right: 8px;
@include screen-sm-min { @include screen-sm-min {
height: 600px; max-height: 600px;
} }
} }
} }