aboutsummaryrefslogtreecommitdiff
path: root/src/components/popover/popover.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/popover/popover.vue
parent17b25ef0e0eb261fbfd09be740a1cd8c0e3ad88b (diff)
add roundness, fix inputs
Diffstat (limited to 'src/components/popover/popover.vue')
-rw-r--r--src/components/popover/popover.vue15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/components/popover/popover.vue b/src/components/popover/popover.vue
index ce053503..7aec4404 100644
--- a/src/components/popover/popover.vue
+++ b/src/components/popover/popover.vue
@@ -69,13 +69,15 @@
pointer-events: none;
}
- border-radius: $fallback--btnRadius;
- border-radius: var(--btnRadius, $fallback--btnRadius);
+ border-radius: var(--roundness);
+ border-color: var(--border);
+ border-style: solid;
+ border-width: 1px;
}
.dropdown-menu {
display: block;
- padding: 0.5rem 0;
+ padding: 0;
font-size: 1em;
text-align: left;
list-style: none;
@@ -108,8 +110,6 @@
height: 100%;
box-sizing: border-box;
- --btnText: var(--popoverText, $fallback--text);
-
&-icon {
svg {
width: 22px;
@@ -134,10 +134,7 @@
line-height: 22px;
text-align: center;
border-radius: 0;
- background-color: $fallback--fg;
- background-color: var(--input, $fallback--fg);
- box-shadow: 0 0 2px black inset;
- box-shadow: var(--inputShadow);
+ box-shadow: var(--shadow);
margin-right: 0.75em;
&.menu-checkbox-checked::after {