Skip to content

Commit

Permalink
fix(VBtn): size loader based on em
Browse files Browse the repository at this point in the history
fixes #9870
  • Loading branch information
johnleider committed Apr 4, 2024
1 parent c34e8ce commit e7297e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/vuetify/src/components/VBtn/VBtn.sass
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@
top: 0
width: 100%

> .v-progress-circular
width: $button-loader-size
height: $button-loader-size

.v-btn__content,
.v-btn__prepend,
.v-btn__append
Expand Down
1 change: 0 additions & 1 deletion packages/vuetify/src/components/VBtn/VBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ export const VBtn = genericComponent<VBtnSlots>()({
<VProgressCircular
color={ typeof props.loading === 'boolean' ? undefined : props.loading }
indeterminate
size="23"
width="2"
/>
)}
Expand Down
1 change: 1 addition & 0 deletions packages/vuetify/src/components/VBtn/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ $button-stacked-icon-margin: 4px !default;
$button-icon-border-radius: map.get(settings.$rounded, 'circle') !default;
$button-icon-font-size: 1rem !default;
$button-line-height: normal !default;
$button-loader-size: 1.5em !default;
$button-stacked-line-height: 1.25 !default;
$button-plain-opacity: .62 !default;
$button-padding-ratio: 2.25 !default;
Expand Down

0 comments on commit e7297e6

Please sign in to comment.