Skip to content

Commit

Permalink
fix (VBtn): button loader thickness and size (#3693)
Browse files Browse the repository at this point in the history
fixes #3691
  • Loading branch information
jacekkarczmarczyk authored and johnleider committed Apr 1, 2018
1 parent bbc2403 commit d54fc4c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/components/VBtn/VBtn.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ export default {
children.push(this.$createElement(VProgressCircular, {
props: {
indeterminate: true,
size: 26
size: 23,
width: 2
}
}))
} else {
Expand Down
10 changes: 5 additions & 5 deletions test/unit/components/VBtn/__snapshots__/VBtn.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ exports[`VBtn.js should render component with loader and match snapshot 1`] = `
</div>
<span class="btn__loading">
<div class="progress-circular progress-circular--indeterminate"
style="height: 26px; width: 26px;"
style="height: 23px; width: 23px;"
>
<svg xmlns="http://www.w3.org/2000/svg"
viewbox="23.636363636363637 23.636363636363637 47.27272727272727 47.27272727272727"
viewbox="21.904761904761905 21.904761904761905 43.80952380952381 43.80952380952381"
>
<circle fill="transparent"
cx="47.27272727272727"
cy="47.27272727272727"
cx="43.80952380952381"
cy="43.80952380952381"
r="20"
stroke-width="7.272727272727273"
stroke-width="3.8095238095238093"
stroke-dasharray="125.664"
stroke-dashoffset="125.66370614359172px"
class="progress-circular__overlay"
Expand Down

0 comments on commit d54fc4c

Please sign in to comment.