Files
front-AT/app/Components/Login/Login.css
T

32 lines
462 B
CSS
Raw Normal View History

2025-09-02 19:50:17 -04:00
.login {
width: 300px;
}
2025-09-03 20:41:25 -04:00
.center{
display: grid;
grid-template-columns: auto 400px;
justify-content: center;
align-items: center;
}
2025-09-02 19:50:17 -04:00
.relative {
position: relative;
}
.eyeClose,
.eyeOpen {
position: absolute;
right: 10px;
bottom: -1px;
transform: translateY(-50%);
width: 20px;
height: 20px;
background-size: cover;
cursor: pointer;
}
2025-09-03 20:41:25 -04:00
@media(max-width:800px){
.center{
display: flex;
}
}