#66356: Lodestar: Home page: Full width blocks are not full width (#6344)

* #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:
Gustavo Hilario 2022-09-14 04:37:29 -03:00 committed by GitHub
parent 4c9c5c2768
commit ef1ce63bf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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%;