* #66356: Lodestart: Home page: Full width blocks are not full width Removing a CSS selector that was preventing full-width blocks from being full width on the Lodestar home page. * #66356: Lodestart: Home page: Full width blocks are not full width Adding an extra CSS selector to ensure that Lodestar home page can use full-width blocks when the panel does not split into two columns. * #66356: Lodestar: Home page: Full width blocks are not full width Adding an extra CSS selector to ensure that Lodestar home page can use full-width blocks when the panel does not split into two columns.
This commit is contained in:
parent
4c9c5c2768
commit
ef1ce63bf2
1 changed files with 3 additions and 2 deletions
|
@ -44,8 +44,9 @@ body:not(.has-sidebar) .site-content {
|
|||
}
|
||||
}
|
||||
|
||||
body:not(.has-sidebar):not(.lodestar-front-page) .alignfull,
|
||||
body:not(.has-sidebar).lodestar-front-page .lodestar-panel:not(.two-column) .alignfull {
|
||||
body:not(.has-sidebar) .alignfull,
|
||||
body:not(.has-sidebar).lodestar-front-page .lodestar-panel:not(.two-column) .alignfull,
|
||||
body:not(.has-sidebar).lodestar-front-page .lodestar-intro:not(.two-column) .alignfull {
|
||||
margin-left: calc(50% - 50vw);
|
||||
margin-right: calc(50% - 50vw);
|
||||
max-width: 1000%;
|
||||
|
|
Loading…
Reference in a new issue