diff --git a/src/lib/components/utils/acm-select.svelte b/src/lib/components/utils/acm-select.svelte index 0cc9eff1c..59bafcfa9 100644 --- a/src/lib/components/utils/acm-select.svelte +++ b/src/lib/components/utils/acm-select.svelte @@ -17,9 +17,9 @@
-
+
{currentValue}
-
+
{#each options as optionValue (optionValue)}
handleOption(optionValue)}> {optionValue} @@ -47,11 +47,14 @@ background-color: var(--acm-dark); padding: 8px 24px; cursor: pointer; - border-radius: 6px 6px 0px 0px; + border-radius: 6px; &:hover { color: var(--acm-blue); } } + .active > .selected { + border-radius: 6px 6px 0 0; + } .option { cursor: pointer; @@ -66,7 +69,7 @@ } } - .option.active { + .active > .option { visibility: visible; background-color: var(--acm-dark); padding: 8px 24px;