2025-03-26 10:01:46 +07:00

19 lines
485 B
SCSS
Vendored

@mixin floating-input-varient($normal-state, $active-state, $padding-y, $padding-x, $height: null) {
> .form-control,
> .form-select {
height: $height;
}
> label {
height: unset;
transform: $normal-state;
padding:$padding-y $padding-x;
}
> .form-control:focus,
> .form-control:not(:placeholder-shown),
> .form-select {
~ label {
transform: $active-state;
}
}
}