fix responsiv on login page

This commit is contained in:
Hugo Lextrait 2023-04-20 15:44:48 +02:00
parent 22d680e6d2
commit 326b1e0d85

View File

@ -13,19 +13,25 @@
max-height: 100vh;
overflow: auto;
}
.sides {
width: 50%;
@media (max-width: $screen-m) {
width: 100%;
}
&.image-container {
display: flex;
align-items: center;
justify-content: center;
@media (max-width: $screen-m) {
display: none;
}
background: var(--grey-soft);
.image {
width: 100%;
height: 100%;
@ -38,6 +44,10 @@
align-items: center;
justify-content: center;
@media (max-width: $screen-m) {
display: none;
}
.background-image {
height: 100%;
width: 100%;
@ -46,4 +56,4 @@
}
}
}
}
}