website/src/styles/mobile/modal-mobile.scss
2023-12-10 16:24:51 +01:00

50 lines
1.1 KiB
SCSS

@media (max-width: 850px) {
content {
.parent {
display: grid;
grid-template-columns: repeat(1, 2fr);
grid-template-rows: auto 1fr; // Adjusted to 2 rows
grid-column-gap: 0px;
grid-row-gap: 0px;
overflow: scroll;
margin: 0 5% 15% 5%;
.gallery {
display: grid;
justify-items: center;
img.project-logo,
.next-icon {
height: 5em;
width: 5em;
margin-right: 0;
}
.next-icon {
background-size: 2em;
margin-bottom: 1em;
}
}
}
.button-container {
bottom: 7.5%;
&::before {
bottom: 5.9%;
width: 80%;
}
button {
font-size: 20px;
}
}
.item-list {
&::before {
bottom: 5.9%;
width: 80%;
}
}
}
}