From 90338c25c62198aedd9cb2229bec839d24d3ef49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Fri, 31 Dec 2021 18:15:59 -0500 Subject: [FrontEnd]: fix dropdown design --- youtube/static/home.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'youtube/static/home.css') diff --git a/youtube/static/home.css b/youtube/static/home.css index 8a282f6..8923c57 100644 --- a/youtube/static/home.css +++ b/youtube/static/home.css @@ -189,7 +189,7 @@ label[for=options-toggle-cbox] { .dropdown { display: grid; grid-gap: 1px; - grid-template-columns: minmax(50px, 120px); + grid-template-columns: 100px auto; grid-template-areas: "dropdown-label" "dropdown-content"; @@ -200,9 +200,8 @@ label[for=options-toggle-cbox] { z-index: 1; } #options-toggle-cbox:checked ~ .dropdown-content { - padding: 0rem 3rem 1rem 1rem; - width: 100%; - max-height: 45vh; + width: calc(100% + 100px); + max-height: 80vh; overflow-y: scroll; } -- cgit v1.2.3