瀏覽代碼

#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 年之前
父節點
當前提交
ef1ce63bf2
共有 1 個文件被更改,包括 3 次插入2 次删除
  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%;