From 417f9d72914c3dffaaf46f521c97e90e435bfdd0 Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Thu, 24 Nov 2022 11:22:25 -0600 Subject: [PATCH] adjust styling to make individual items more apparent --- client/components/combobox.less | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/components/combobox.less b/client/components/combobox.less index 5091a198c..813ac5481 100644 --- a/client/components/combobox.less +++ b/client/components/combobox.less @@ -1,17 +1,25 @@ .dropdown-container { position:relative; + flex: 1; + input { + width: 100%; + } .dropdown-options { position:absolute; background-color: rgb(227, 227, 227); z-index: 100; width: 100%; border: 1px solid gray; + overflow-y: scroll; + height: 200px; .item { position:relative; font-size: 14px; font-family: OpenSans; padding: 5px; cursor: default; + margin: 0 3px; + border-bottom: 1px solid darkgray; &:hover { filter: brightness(120%); background-color: rgb(163, 163, 163);