fix extend to screen width css

This commit is contained in:
geoffrey45
2022-09-17 13:05:00 +03:00
parent 8305df17ba
commit fca59751c4
3 changed files with 13 additions and 10 deletions
+7 -4
View File
@@ -13,14 +13,17 @@
margin: 0 auto;
margin-top: -$small;
max-width: 1720px;
}
#app-grid.extendWidth {
padding-right: $medium;
border-right: solid 1px $gray4;
padding-top: $small;
}
#app-grid.extendWidth {
padding-right: 0;
border-right: none;
max-width: 100%;
}
#app-grid.isSmall {
grid-template-columns: min-content 1fr;
grid-template-areas:
@@ -104,4 +107,4 @@
.b-bar {
grid-area: bottombar;
}
}