diff --git a/packages/vuetify/src/components/VSelect/VSelect.sass b/packages/vuetify/src/components/VSelect/VSelect.sass index 14084cc163d..f1b60ece5c8 100644 --- a/packages/vuetify/src/components/VSelect/VSelect.sass +++ b/packages/vuetify/src/components/VSelect/VSelect.sass @@ -4,10 +4,6 @@ @use '../../styles/tools' @use './variables' as * -@at-root - @include tools.density('v-input', $select-chips-margin-bottom) using ($modifier) - --select-chips-margin-bottom: #{0px + math.div($modifier, 2)} - .v-select .v-field .v-text-field__prefix, @@ -62,8 +58,8 @@ &--chips .v-select__selection - margin-top: $select-chips-margin-top - margin-bottom: var(--select-chips-margin-bottom) + margin-top: -1px + margin-bottom: -1px &:first-child margin-inline-start: 0 diff --git a/packages/vuetify/src/components/VSelect/_variables.scss b/packages/vuetify/src/components/VSelect/_variables.scss index 676c0c59e8b..e4ca27654a0 100644 --- a/packages/vuetify/src/components/VSelect/_variables.scss +++ b/packages/vuetify/src/components/VSelect/_variables.scss @@ -6,5 +6,3 @@ $select-content-elevation: 4 !default; $select-line-height: 1.75 !default; $select-transition: .2s settings.$standard-easing !default; $select-chips-control-min-height: 64px !default; -$select-chips-margin-top: 2px !default; -$select-chips-margin-bottom: ('default': 0, 'comfortable': 1, 'compact': 2) !default;