From d4a311770239dc76ae45fd428ab8a625b9860d46 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 10 Nov 2024 21:20:59 -0300 Subject: [PATCH] style: increase max-height of tomselect's dropdown --- frontend/src/styles/style.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/styles/style.scss b/frontend/src/styles/style.scss index efb7bb8..177b005 100644 --- a/frontend/src/styles/style.scss +++ b/frontend/src/styles/style.scss @@ -16,6 +16,10 @@ select[multiple] { visibility: hidden; } +.ts-dropdown-content { + max-height: 50vh; /* change this */ +} + .font-base { font-family: $font-family-base; }