Skip to content

Commit

Permalink
フォーマッタとコメント
Browse files Browse the repository at this point in the history
  • Loading branch information
reiroop committed Apr 5, 2024
1 parent 01ee435 commit 08d37af
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/UI/FormSelectorFilterable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const props = withDefaults(
}>(),
{
modelValue: '',
background: 'secondary',
background: 'secondary'
}
)
Expand All @@ -55,13 +55,13 @@ const id = randomString()
}
// https://vue-select.org/guide/css.html
.select {
// background
@include background-secondary;
&[background=primary] {
&[background='primary'] {
@include background-primary;
}
border-radius: 4px;
height: 30px;
:global(.vs__dropdown-toggle),
:global(.vs__selected-options),
:global(.vs__actions),
Expand Down Expand Up @@ -90,13 +90,13 @@ const id = randomString()
// Dropdown
--vs-dropdown-bg: var(--theme-background-secondary-default);
&[background=primary] {
&[background='primary'] {
--vs-dropdown-bg: var(--theme-background-primary-default);
}
// Active State
--vs-dropdown-option--active-bg: var(--theme-background-primary-default);
&[background=primary] {
&[background='primary'] {
--vs-dropdown-option--active-bg: var(--theme-background-secondary-default);
}
--vs-dropdown-option--active-color: var(--theme-ui-primary-default);
Expand Down

0 comments on commit 08d37af

Please sign in to comment.