From 724f1ee9d17ac86636ca6f3008acec54a29db67f Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Fri, 29 Oct 2021 11:39:19 -0400 Subject: [PATCH] UX: Fix short post width on mobile (#14771) --- app/assets/stylesheets/mobile/topic.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/mobile/topic.scss b/app/assets/stylesheets/mobile/topic.scss index ec5b6202ddc..9eb3c5b49a3 100644 --- a/app/assets/stylesheets/mobile/topic.scss +++ b/app/assets/stylesheets/mobile/topic.scss @@ -1,3 +1,8 @@ +.container.posts { + grid-template-areas: "posts"; + grid-template-columns: auto; +} + .post-info a { color: var(--primary-medium); }