From 7adcf93c80005364b8fdea1ab35c65e592327377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoe=CC=88=20Bijl?= Date: Thu, 9 Oct 2025 23:31:25 +0200 Subject: [PATCH] [bugfix] set border radius on smaller screens --- .../glitch/styles/components/single_column.scss | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/app/javascript/flavours/glitch/styles/components/single_column.scss b/app/javascript/flavours/glitch/styles/components/single_column.scss index faba8e7f5..a5012f56c 100644 --- a/app/javascript/flavours/glitch/styles/components/single_column.scss +++ b/app/javascript/flavours/glitch/styles/components/single_column.scss @@ -281,11 +281,13 @@ border-bottom: 1px solid lighten($ui-base-color, 8%); } - .column-header, - .column-back-button, - .scrollable, - .error-column { - border-radius: 0 !important; + .layout-single-column { + .column-header, + .column-back-button, + .scrollable, + .error-column { + border-radius: 0 !important; + } } }