Generateurv2/frontend/styles/input2.module.scss

27 lines
510 B
SCSS
Raw Normal View History

2022-06-24 13:42:16 +02:00
@import './variables';
.input{
background-color: lighten($color: $background-dark, $amount: 5);
color: #d4dcff;
border: 1px solid $border;
padding: 12px 8px;
width: 100%;
&:focus{
outline: none;
border: $contrast 1px solid;
box-shadow: 0 0 0 3px $background-light;
}
}
.password-toggler {
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
right: 0;
width: 20px;
height: 20px;
cursor: pointer;
}
.container{
position: relative;
}