Bladeren bron

#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.
Gustavo Hilario 2 jaren geleden
bovenliggende
commit
ef1ce63bf2
1 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen
  1. 3 2
      lodestar/assets/css/blocks.css

+ 3 - 2
lodestar/assets/css/blocks.css

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