mirror of
https://github.com/Nezumi-2711/foodify-frontend.git
synced 2026-09-22 20:01:17 +00:00
32 lines
614 B
SCSS
32 lines
614 B
SCSS
.input-password-holder {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
.input-password {
|
|
border: none;
|
|
width: 100%;
|
|
}
|
|
.icon-holder-eye {
|
|
color: #999a9b;
|
|
}
|
|
}
|
|
|
|
.input-image {
|
|
/* visibility: hidden etc. wont work */
|
|
width: 0.1px;
|
|
height: 0.1px;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
|
|
.input-image:focus + label {
|
|
/* keyboard navigation */
|
|
outline: 1px dotted #000;
|
|
outline: -webkit-focus-ring-color auto 5px;
|
|
}
|
|
|
|
.input-image + label * {
|
|
pointer-events: none;
|
|
} |