aboutsummaryrefslogtreecommitdiff
path: root/src/components/autosuggest/autosuggest.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-02-13 02:09:43 +0200
committerHenry Jameson <me@hjkos.com>2024-02-13 02:09:43 +0200
commitbcc50844096b47c0656ed3338de222055a749fb1 (patch)
treebf051cbc0c779438d53d60fe827732846763cef5 /src/components/autosuggest/autosuggest.vue
parent17b25ef0e0eb261fbfd09be740a1cd8c0e3ad88b (diff)
add roundness, fix inputs
Diffstat (limited to 'src/components/autosuggest/autosuggest.vue')
-rw-r--r--src/components/autosuggest/autosuggest.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/autosuggest/autosuggest.vue b/src/components/autosuggest/autosuggest.vue
index 64cc11a4..7912db94 100644
--- a/src/components/autosuggest/autosuggest.vue
+++ b/src/components/autosuggest/autosuggest.vue
@@ -1,3 +1,4 @@
+<!-- FIXME THIS NEEDS TO BE REFACTORED TO USE POPOVER -->
<template>
<div
v-click-outside="onClickOutside"
@@ -11,7 +12,7 @@
>
<div
v-if="resultsVisible && filtered.length > 0"
- class="autosuggest-results"
+ class="panel autosuggest-results"
>
<slot
v-for="item in filtered"
@@ -45,13 +46,12 @@
border-style: solid;
border-width: 1px;
border-color: $fallback--border;
- border-color: var(--border, $fallback--border);
- border-radius: $fallback--inputRadius;
- border-radius: var(--inputRadius, $fallback--inputRadius);
+ border-color: var(--border);
+ border-radius: var(--roundness);
border-top-left-radius: 0;
border-top-right-radius: 0;
box-shadow: 1px 1px 4px rgb(0 0 0 / 60%);
- box-shadow: var(--panelShadow);
+ box-shadow: var(--shadow);
overflow-y: auto;
z-index: 1;
}