sidebar height media query added

This commit is contained in:
Kakabay 2024-07-08 13:18:41 +05:00
parent dd10a0438f
commit 0d9a8fa9c3
1 changed files with 8 additions and 1 deletions

View File

@ -48,7 +48,7 @@
position: absolute;
left: 0;
top: 0;
content: "";
content: '';
background: rgba(255, 255, 255, 1);
opacity: 0;
transition: 0.4s all ease;
@ -157,6 +157,13 @@
.side-wrapper {
width: 100%;
// height: auto;
background: rgba(0, 0, 0, 0.5);
}
}
@media screen and (max-height: 729px) {
.side-wrapper {
height: auto;
}
}