Explorar o código

#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 %!s(int64=2) %!d(string=hai) anos
pai
achega
ef1ce63bf2
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  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%;