Files
web/components/MyPages/Blocks/Overview/Mobile/mobile.module.css
2024-04-02 13:43:23 +02:00

17 lines
298 B
CSS

.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) {
.overviewMobile {
display: none;
}
}