From 87b970cd22ba529dae7c600dfde59dba7a7bd2e6 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Thu, 5 May 2022 16:34:40 +0800 Subject: [PATCH] UX: Ensure `#main-outlet-wrapper` takes full width. (#16650) For some reason, we're seeing inconsistency between production and development environment where the computed width of #main-outlet-wrapper is not taking the full width of the grid column in production. Follow-up to b35cf7cc0c5845924b57399f418d7f5e58887a65. --- app/assets/stylesheets/desktop/discourse.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/desktop/discourse.scss b/app/assets/stylesheets/desktop/discourse.scss index aef62d3859c..154010f9652 100644 --- a/app/assets/stylesheets/desktop/discourse.scss +++ b/app/assets/stylesheets/desktop/discourse.scss @@ -184,6 +184,7 @@ input { } #main-outlet-wrapper { + width: 100%; display: grid; grid-template-areas: "content"; grid-template-columns: 1fr;