feat(ui): ghost option buttons
This commit is contained in:
parent
e920babef6
commit
a8b2368676
|
@ -118,6 +118,7 @@ const isOpen = ref(false)
|
|||
<OptionsButton
|
||||
v-if="dropdownOnly"
|
||||
@click="isOpen = !isOpen"
|
||||
ghost
|
||||
/>
|
||||
<Button
|
||||
v-else
|
||||
|
|
|
@ -115,7 +115,7 @@ const attributes = computed(() =>
|
|||
|
||||
color: var(--fw-text-color);
|
||||
background-color: var(--fw-bg-color);
|
||||
box-shadow: 0px 4px 6px 0px rgb(0 0 0 / 20%);
|
||||
box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 20%);
|
||||
|
||||
border-radius: var(--fw-border-radius);
|
||||
font-size: 1rem;
|
||||
|
@ -194,7 +194,6 @@ const attributes = computed(() =>
|
|||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding: 14px;
|
||||
}
|
||||
|
||||
>.alert {
|
||||
|
|
|
@ -173,6 +173,7 @@ const isOpen = ref(false)
|
|||
<template #default="{ toggleOpen }">
|
||||
<OptionsButton
|
||||
@click="toggleOpen"
|
||||
ghost
|
||||
/>
|
||||
</template>
|
||||
<template #items>
|
||||
|
|
Loading…
Reference in New Issue