This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-23 10:26:02 +02:00

19 lines
354 B
SCSS

.form-control-lite {
border: 0;
border-radius: 0;
box-shadow: none;
background: transparent;
color: $form-control-lite-color;
@include placeholder {
color: rgba($form-control-lite-color, .5);
}
&:focus {
box-shadow: none;
outline: 0;
background: transparent;
color: $form-control-lite-color;
}
}