mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 03:24:20 +00:00
🔧 Set fixed width for @layout-threecol
This commit is contained in:
parent
efc6c10b7d
commit
a28367c4cd
5 changed files with 11 additions and 5 deletions
4
src/rules/skeleton.less
vendored
4
src/rules/skeleton.less
vendored
|
@ -375,7 +375,7 @@
|
|||
grid-template-rows: auto auto;
|
||||
|
||||
// Keep the container limited to 1024px and centered
|
||||
max-width: 1024px;
|
||||
width: 1024px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
@ -385,6 +385,7 @@
|
|||
grid-area: left;
|
||||
|
||||
@media screen and (min-width: 1281px) {
|
||||
width: 128px;
|
||||
justify-self: end;
|
||||
}
|
||||
|
||||
|
@ -404,6 +405,7 @@
|
|||
grid-area: right;
|
||||
|
||||
@media screen and (min-width: 1281px) {
|
||||
width: 128px;
|
||||
justify-self: start;
|
||||
}
|
||||
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
grid-template-areas: "center center" "left right";
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: auto auto;
|
||||
max-width: 1024px;
|
||||
width: 1024px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
@ -118,6 +118,7 @@
|
|||
}
|
||||
@media screen and (min-width: 1281px) {
|
||||
.bluelib .layout-threecol-left {
|
||||
width: 128px;
|
||||
justify-self: end;
|
||||
}
|
||||
}
|
||||
|
@ -135,6 +136,7 @@
|
|||
}
|
||||
@media screen and (min-width: 1281px) {
|
||||
.bluelib .layout-threecol-right {
|
||||
width: 128px;
|
||||
justify-self: start;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -119,7 +119,7 @@ body .layout-threecol,
|
|||
grid-template-areas: "center center" "left right";
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: auto auto;
|
||||
max-width: 1024px;
|
||||
width: 1024px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
@ -131,6 +131,7 @@ body .layout-threecol-left,
|
|||
@media screen and (min-width: 1281px) {
|
||||
body .layout-threecol-left,
|
||||
.bluelib .layout-threecol-left {
|
||||
width: 128px;
|
||||
justify-self: end;
|
||||
}
|
||||
}
|
||||
|
@ -152,6 +153,7 @@ body .layout-threecol-right,
|
|||
@media screen and (min-width: 1281px) {
|
||||
body .layout-threecol-right,
|
||||
.bluelib .layout-threecol-right {
|
||||
width: 128px;
|
||||
justify-self: start;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue