thonon-agglo-2021: keep correct sidebar width on desktop viewport (#56840)

This commit is contained in:
Thomas Jund 2021-09-23 17:39:00 +02:00
parent 7221c04454
commit 20f0a8baf7
1 changed files with 3 additions and 1 deletions

View File

@ -306,8 +306,10 @@ h1#logo {
padding-left: $columns-gutter;
}
@media (min-width: $width + 1) {
box-sizing: content-box;
margin-right: calc(-50vw + #{$width/2});
padding-right: calc(50vw - #{$width/2} + #{$wrapper-gutter-desktop});
padding-right: calc(50vw - #{$width/2} + #{$wrapper-gutter-desktop});
flex-basis: calc(#{$sidebar-width} - #{$columns-gutter+$wrapper-gutter-desktop});
}
}
.gru-content #sidebar {