diff --git a/assets/scss/common.scss b/assets/scss/common.scss
index 0ee050d..bac9445 100644
--- a/assets/scss/common.scss
+++ b/assets/scss/common.scss
@@ -1259,19 +1259,11 @@ a {
opacity: 0;
}
- .v-list-item__content {
- background-color: currentColor;
- }
-
.v-list-item__title {
color: map-deep-get($config,
#{$theme},
"tui-datepicker-calendar-color"
);
-
- @if $theme ==light {
- color: #fff !important;
- }
}
}
}
diff --git a/assets/scss/common/input.scss b/assets/scss/common/input.scss
index 7369caf..ccc3e55 100644
--- a/assets/scss/common/input.scss
+++ b/assets/scss/common/input.scss
@@ -1,4 +1,6 @@
.v-select__custom {
+ padding: 0.125rem;
+
&.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot {
box-shadow: none;
}
@@ -42,6 +44,10 @@
legend {
width: 0;
}
+
+ .v-select-list {
+ padding: 0 1rem;
+ }
}
.v-input__custom {
diff --git a/components/common/select/SelectBoxMulti.vue b/components/common/select/SelectBoxMulti.vue
index a4835b6..35550da 100644
--- a/components/common/select/SelectBoxMulti.vue
+++ b/components/common/select/SelectBoxMulti.vue
@@ -20,10 +20,10 @@
outlined
:multiple="multiple"
:hide-details="true"
- append-icon=""
:class="['v-select__custom', customClass]"
:disabled="disabled"
:readonly="readonly"
+ append-icon=""
>