Basic Login and Signup (Desktop)

This commit is contained in:
Ilay Eble 2025-06-09 12:36:50 +02:00 committed by Luisa Bellitto
parent e7c3b268db
commit 739a0e1c54
3 changed files with 33 additions and 5 deletions

View file

@ -126,6 +126,22 @@
background-position: 75%;
}
.signup-image{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 8px;
border: 5px solid var(--Rotkehlchen-gray-default);
background-image: url("../public/assets/images/OwlSignUp.png");
background-size: cover;
background-position: 75%;
}
.login-part{
width: 45%;
height: 90%;
@ -160,4 +176,9 @@
font-weight: 600;
line-height: 17px;
letter-spacing: 0.8px;
}
/* Desktop view*/
@media only screen and (min-width: 768px) {
}