From 1b37618e0bff59d6f0ae1ebe5acfeecd9669f0dc Mon Sep 17 00:00:00 2001 From: Monty Date: Mon, 4 Oct 2021 11:19:52 +0200 Subject: [PATCH] fix(locale dropdown): option box not expanding to width of select box --- public/assets/css/dropdown.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/assets/css/dropdown.css b/public/assets/css/dropdown.css index 20c5eec..1b0860d 100644 --- a/public/assets/css/dropdown.css +++ b/public/assets/css/dropdown.css @@ -12,7 +12,7 @@ .select-box .options-container { max-height: 0; - width: calc(100% - 12px); + width: 100%; opacity: 0; transition: all 0.4s; overflow: hidden;