17 lines
298 B
CSS
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;
|
|
}
|
|
}
|