From ba7db10fd05f7db235a1b5fb907e8909e10b9802 Mon Sep 17 00:00:00 2001 From: diondiondion Date: Thu, 12 Mar 2026 11:19:06 +0100 Subject: [PATCH] [Glitch] Fix extra border on accounts in settings page Port 13c94db9e7d7f35264c7e1ac93f6e693b0014592 to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/styles/mastodon/components.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/styles/mastodon/components.scss b/app/javascript/flavours/glitch/styles/mastodon/components.scss index 7027ece062..a0fb345833 100644 --- a/app/javascript/flavours/glitch/styles/mastodon/components.scss +++ b/app/javascript/flavours/glitch/styles/mastodon/components.scss @@ -2075,7 +2075,9 @@ body > [data-popper-placement] { .account { padding: 10px; // glitch: reduced padding - &:not(&--without-border) { + // Using :where keeps specificity low, allowing for existing + // .account overrides to still apply + &:where(:not(&--without-border)) { border-bottom: 1px solid var(--color-border-primary); }