fix: Reduces space for custom drop-downs (#2778)
This commit is contained in:
parent
c523a953f7
commit
462214aced
1 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,6 @@
|
|||
<woot-button
|
||||
variant="hollow"
|
||||
color-scheme="secondary"
|
||||
:v-model="selectedItem"
|
||||
class="selector-button"
|
||||
@click="toggleDropdown"
|
||||
>
|
||||
|
@ -133,6 +132,8 @@ export default {
|
|||
.selector-button {
|
||||
width: 100%;
|
||||
border: 1px solid var(--color-border);
|
||||
padding-left: var(--space-one);
|
||||
padding-right: var(--space-one);
|
||||
|
||||
&:hover {
|
||||
border: 1px solid var(--color-border);
|
||||
|
|
Loading…
Reference in a new issue