Skip to content

Commit

Permalink
fix(VNumberInput): default rounded-0 for all control buttons
Browse files Browse the repository at this point in the history
fixes #19463
  • Loading branch information
yuwu9145 committed Mar 29, 2024
1 parent 6748fd7 commit 46eaff3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vuetify/src/labs/VNumberInput/VNumberInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
icon="$plus"
tile
onClick={ onClickUp }
rounded="0"

This comment has been minimized.

Copy link
@johnleider

johnleider Mar 30, 2024

Member

this should be done in css, otherwise it requires the user to have utility classes installed.

/>
</div>
) : (!props.reverse
Expand All @@ -269,6 +270,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
icon="$minus"
tile
onClick={ onClickDown }
rounded="0"
/>

<VDivider vertical />
Expand Down

0 comments on commit 46eaff3

Please sign in to comment.