diff --git a/src/components/v-button/v-button.vue b/src/components/v-button/v-button.vue index f5898dcff7..e1830616e7 100644 --- a/src/components/v-button/v-button.vue +++ b/src/components/v-button/v-button.vue @@ -253,8 +253,8 @@ export default defineComponent({ --v-button-height: 28px; --v-button-font-size: 12px; --v-button-font-weight: 600; + --v-button-min-width: 60px; - min-width: 60px; padding: 0 12px; border-radius: 4px; } @@ -262,23 +262,23 @@ export default defineComponent({ &.small { --v-button-height: 36px; --v-button-font-size: 14px; + --v-button-min-width: 120px; - min-width: 120px; padding: 0 12px; } &.large { --v-button-height: 52px; + --v-button-min-width: 154px; - min-width: 154px; padding: 0 12px; } &.x-large { --v-button-height: 64px; --v-button-font-size: 18px; + --v-button-min-width: 180px; - min-width: 180px; padding: 0 12px; } diff --git a/src/components/v-card/v-card-actions.vue b/src/components/v-card/v-card-actions.vue index 5dfb61bcc6..c17a11bc55 100644 --- a/src/components/v-card/v-card-actions.vue +++ b/src/components/v-card/v-card-actions.vue @@ -9,7 +9,7 @@ padding: var(--v-card-padding); & ::v-deep > .v-button + .v-button { - margin-left: 8px; + margin-left: 12px; } } diff --git a/src/components/v-card/v-card-text.vue b/src/components/v-card/v-card-text.vue index fbbc250450..448ac10f37 100644 --- a/src/components/v-card/v-card-text.vue +++ b/src/components/v-card/v-card-text.vue @@ -6,5 +6,6 @@ .v-card-text { padding: var(--v-card-padding); padding-top: 0; + padding-bottom: 12px; } diff --git a/src/components/v-dialog/v-dialog.vue b/src/components/v-dialog/v-dialog.vue index 6da40c2fca..36f7179f41 100644 --- a/src/components/v-dialog/v-dialog.vue +++ b/src/components/v-dialog/v-dialog.vue @@ -79,6 +79,7 @@ export default defineComponent({ ::v-deep .v-card { --v-card-min-width: 540px; --v-card-padding: 20px; + --v-card-background-color: var(--background-page); } ::v-deep .v-sheet { diff --git a/src/components/v-list/v-list-group.vue b/src/components/v-list/v-list-group.vue index fd30a3c7b5..4f5f5400c1 100644 --- a/src/components/v-list/v-list-group.vue +++ b/src/components/v-list/v-list-group.vue @@ -4,7 +4,7 @@ - + @@ -64,7 +64,7 @@ export default defineComponent({ transition: transform var(--medium) var(--transition); &.active { - transform: rotate(-90deg); + transform: rotate(90deg); } } diff --git a/src/components/v-pagination/v-pagination.vue b/src/components/v-pagination/v-pagination.vue index 609a4b4b7f..62dd2a4777 100644 --- a/src/components/v-pagination/v-pagination.vue +++ b/src/components/v-pagination/v-pagination.vue @@ -1,58 +1,49 @@