feat: add media query to remove right img

This commit is contained in:
RadoslavDimchev 2023-11-30 22:19:37 +02:00
parent c4b6b5bf62
commit 6ff153e29d
2 changed files with 7 additions and 1 deletions

View File

@ -29,7 +29,7 @@ const PageWrapperShadow = ({
</div>
</section>
<section className="layout-right">
<section className="layout-right page-wrapper-shadow">
<div className="image-container">
<img
src={rightImageSrc}

View File

@ -83,3 +83,9 @@
.image-container .nimbus-logomark svg {
height: 73px;
}
@media (max-width: 900px) {
.page-wrapper-shadow {
display: none;
}
}