Files
web/components/MyPages/Blocks/Overview/overview.module.css

35 lines
626 B
CSS

.overview {
display: none;
}
.overviewMobile {
background-color: var(--some-grey-color, #f2f2f2);
left: 50%;
margin-left: -50vw;
margin-right: -50vw;
padding: 3.5rem 2rem 2rem;
position: relative;
right: 50%;
width: 100dvw;
}
@media screen and (min-width: 950px) {
.overview {
background-color: var(--some-grey-color, #f2f2f2);
border-radius: 0.8rem;
display: block;
height: 35rem;
left: unset;
margin-left: unset;
margin-right: unset;
max-width: var(--max-width);
position: static;
right: unset;
width: 100%;
}
.overviewMobile {
display: none;
}
}