Button alignment on material inputnumber

pull/6501/head
Cagatay Civici 2024-09-30 10:49:40 +03:00
parent 503fba3197
commit f200bed532
2 changed files with 10 additions and 3 deletions

View File

@ -3,7 +3,7 @@ export default {
transitionDuration: '{transition.duration}'
},
button: {
width: '2.5rem',
width: '3rem',
borderRadius: '{form.field.border.radius}',
verticalPadding: '{form.field.padding.y}'
},
@ -34,5 +34,12 @@ export default {
activeColor: '{surface.200}'
}
}
},
style: ({ dt }) => `
.p-inputnumber-stacked .p-inputnumber-button-group {
top: 2px;
right: 2px;
height: calc(100% - 4px);
}
`
};