@helpwave/hightide
Version:
helpwave's component and theming library
23 lines (18 loc) • 353 B
CSS
@layer components {
.number-stepper-input {
@apply flex items-center gap-1;
&[data-layout="row"] {
@apply flex-row;
}
&[data-layout="col"] {
@apply flex-col;
}
&[data-disabled],
&[data-readonly] {
@apply cursor-not-allowed;
}
}
.number-stepper-input-button {
@apply shrink-0 w-full;
}
}