Merge pull request #13693 from Godmartinz/bug/sc-9955

added proper margin-top to sidebar menu on bigger resolutions
This commit is contained in:
snipe 2023-10-05 14:27:25 +01:00 committed by GitHub
commit 1dab4b59e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -680,15 +680,15 @@ th.css-accessory > .th-inner::before
margin-top:160px; margin-top:160px;
} }
} }
@media screen and (max-width: 771px) and (min-width: 512px){ @media screen and (max-width: 912px) and (min-width: 512px){
.sidebar-menu { .sidebar-menu {
margin-top:160px margin-top:100px
} }
} }
@media screen and (max-width: 1098px) and (min-width: 772px){ @media screen and (max-width: 1268px) and (min-width: 912px){
.sidebar-menu { .sidebar-menu {
margin-top:98px margin-top:50px
} }
} }