mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
39 lines
591 B
SCSS
39 lines
591 B
SCSS
@import "src/styles/variables";
|
|
|
|
.input {
|
|
display: flex;
|
|
align-items: center;
|
|
color: inherit;
|
|
|
|
&.has_error {
|
|
color: $red;
|
|
}
|
|
|
|
input {
|
|
height: $input_height;
|
|
border: none;
|
|
flex: 1;
|
|
outline: none;
|
|
color: inherit;
|
|
min-width: 0;
|
|
background: none;
|
|
padding: 0 $gap 0 $gap;
|
|
font: $font_14_semibold;
|
|
border-radius: $radius;
|
|
}
|
|
}
|
|
|
|
.suffix, .prefix{
|
|
fill: currentColor;
|
|
stroke: currentColor;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: $input_grey_color;
|
|
padding: 0 $gap;
|
|
}
|
|
|
|
.reveal {
|
|
cursor: pointer;
|
|
}
|