From a54a36b8c75744e11a53e047014ab0ddd1978bfc Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Tue, 20 Feb 2024 10:18:16 -0500 Subject: [PATCH] WIP add styling for dropdown list. --- src/layouts/insurance-lookup/insurance-lookup.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layouts/insurance-lookup/insurance-lookup.vue b/src/layouts/insurance-lookup/insurance-lookup.vue index 72eb8fe12..2746c20c4 100644 --- a/src/layouts/insurance-lookup/insurance-lookup.vue +++ b/src/layouts/insurance-lookup/insurance-lookup.vue @@ -168,13 +168,13 @@ ul { position: absolute; list-style-type: none; margin: 0; - padding: 0; + padding: .25rem; background: $white; border: 1px solid $gray; border-radius: 0.25rem; li { - padding: 0.125rem 0.5rem; - &:hover { + &:hover, + .ui-state-active { background-color: $gray-100; cursor: pointer; }