35 lines
564 B
SCSS
35 lines
564 B
SCSS
.inputContainer {
|
|
position: relative;
|
|
font-size: 1.1rem;
|
|
|
|
& > .input {
|
|
padding: 7px 14px;
|
|
width: 100%;
|
|
border: 1px solid #d94253;
|
|
border-radius: 5px;
|
|
background-color: #f5cfd3;
|
|
font-size: 0.9rem;
|
|
color: #d94253;
|
|
outline: none;
|
|
|
|
&::placeholder {
|
|
color: #d94253;
|
|
}
|
|
}
|
|
|
|
& > .passwordToggleButton {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 7px;
|
|
width: calc(20px + 1em);
|
|
height: 100%;
|
|
border: none;
|
|
background-color: transparent;
|
|
color: #d94253;
|
|
}
|
|
}
|