Fix position only on big screens

This commit is contained in:
SuperBFG7 2021-06-17 09:51:36 +02:00
parent 886e390d09
commit 86586fbcee
1 changed files with 5 additions and 3 deletions

View File

@ -165,7 +165,9 @@ button {
color: black;
}
.sticky {
position: sticky;
top: 55px;
@media screen and (min-width: 992px) {
.sticky {
position: sticky;
top: 55px;
}
}