Files
web/components/MyPages/Blocks/Overview/overview.module.css
2024-04-05 08:43:58 +02:00

53 lines
958 B
CSS

.container {
background-color: var(--some-grey-color, #f2f2f2);
display: grid;
gap: 0.8rem;
}
.overview {
display: grid;
gap: 1.7rem;
}
@media screen and (max-width: 950px) {
.container {
/* Full-width override styling */
left: 50%;
margin-left: -50vw;
margin-right: -50vw;
padding: 0 2rem 3.6rem;
position: relative;
right: 50%;
width: 100dvw;
}
}
@media screen and (min-width: 950px) {
.container {
background-color: var(--some-white-color, #fff);
gap: 1.5rem;
}
.overview {
background-color: var(--some-grey-color, #f2f2f2);
border-radius: 0.8rem;
gap: 4rem;
grid-template-columns: 1fr 1fr;
justify-content: center;
left: unset;
margin-left: unset;
margin-right: unset;
padding: 3.5rem 2rem;
position: static;
right: unset;
width: 100%;
}
}
@media screen and (min-width: 1100px) {
.overview {
gap: 10rem;
min-height: 35rem;
}
}