diff options
author | Chocobozzz <me@florianbigard.com> | 2023-06-05 10:18:23 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-06-05 10:19:23 +0200 |
commit | ae51278920aab47f1a04d66cb6fc06293fbb03c6 (patch) | |
tree | deda2772b54e799387a419f8444146f51a589382 /client/src/app/shared | |
parent | ed14d1ebd7c8d9428ac58b3a6280e3df6686aec1 (diff) | |
download | PeerTube-ae51278920aab47f1a04d66cb6fc06293fbb03c6.tar.gz PeerTube-ae51278920aab47f1a04d66cb6fc06293fbb03c6.tar.zst PeerTube-ae51278920aab47f1a04d66cb6fc06293fbb03c6.zip |
Fix video channels quick filter overflow
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-forms/advanced-input-filter.component.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-forms/advanced-input-filter.component.scss b/client/src/app/shared/shared-forms/advanced-input-filter.component.scss index ed85385fd..4efbeb85d 100644 --- a/client/src/app/shared/shared-forms/advanced-input-filter.component.scss +++ b/client/src/app/shared/shared-forms/advanced-input-filter.component.scss | |||
@@ -30,3 +30,9 @@ my-global-icon { | |||
30 | height: 0; | 30 | height: 0; |
31 | } | 31 | } |
32 | } | 32 | } |
33 | |||
34 | div[role=menu] { | ||
35 | max-height: 50vh; | ||
36 | min-height: 200px; | ||
37 | overflow: auto; | ||
38 | } | ||