2024-07-19 15:25:24 +02:00

46 lines
658 B
SCSS

@import "@Themes/constants.scss";
.root {
position: relative;
.content {
display: flex;
.sides {
min-height: calc(100vh - 83px);
width: 50%;
@media (max-width: $screen-m) {
width: 100%;
}
}
}
.image-container {
@media (max-width: $screen-m) {
display: none;
}
background: var(--color-neutral-50);
.image {
width: 100%;
object-fit: contain;
}
}
.background-image-container {
position: fixed;
width: 50vw;
top: 83px;
right: 0;
height: calc(100vh - 83px);
@media (max-width: $screen-m) {
display: none;
}
.background-image {
width: 100%;
height: 100%;
object-fit: cover;
}
}
}