From 8b4f8920705de013c48cc6c043d762b39ace1ac5 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 3 Nov 2021 20:58:31 -0500 Subject: [PATCH] Thread: fix pullable styles --- app/styles/components/detailed-status.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/app/styles/components/detailed-status.scss b/app/styles/components/detailed-status.scss index 3189b6e609..6215a1c95c 100644 --- a/app/styles/components/detailed-status.scss +++ b/app/styles/components/detailed-status.scss @@ -221,3 +221,17 @@ } } } + +.thread { + .ptr, + .ptr__children { + background: var(--foreground-color) !important; + border-radius: 10px; + border-top-left-radius: 0; + border-top-right-radius: 0; + + @media screen and (max-width: 580px) { + border-radius: 0; + } + } +}