From 5ad4d82b6b7f7f82be010f4ecda693625bbc243e Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 15 Aug 2024 00:57:23 +0300 Subject: try to fix gaps --- src/components/timeline/timeline.scss | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/components/timeline') diff --git a/src/components/timeline/timeline.scss b/src/components/timeline/timeline.scss index 0fc0d979..61261d32 100644 --- a/src/components/timeline/timeline.scss +++ b/src/components/timeline/timeline.scss @@ -4,6 +4,12 @@ backdrop-filter: none; } + /* This is to fix the occasional gaps/weird lines in timeline */ + .timeline { + display: flex; + flex-direction: column; + } + .alert-badge { font-size: 0.75em; line-height: 1; -- cgit v1.2.3-70-g09d2 From 8b87d548acaeb3b55fe9b4227df3e5d4ca672a01 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 15 Aug 2024 01:01:31 +0300 Subject: didn't work, lol --- src/components/timeline/timeline.scss | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/components/timeline') diff --git a/src/components/timeline/timeline.scss b/src/components/timeline/timeline.scss index 61261d32..0fc0d979 100644 --- a/src/components/timeline/timeline.scss +++ b/src/components/timeline/timeline.scss @@ -4,12 +4,6 @@ backdrop-filter: none; } - /* This is to fix the occasional gaps/weird lines in timeline */ - .timeline { - display: flex; - flex-direction: column; - } - .alert-badge { font-size: 0.75em; line-height: 1; -- cgit v1.2.3-70-g09d2 From f5fbf9af6420c59957530047a62c72dd80b7a462 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 28 Aug 2024 23:54:46 +0300 Subject: fix nested panel headers --- src/components/timeline/timeline.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/timeline') diff --git a/src/components/timeline/timeline.scss b/src/components/timeline/timeline.scss index 0fc0d979..2dd66328 100644 --- a/src/components/timeline/timeline.scss +++ b/src/components/timeline/timeline.scss @@ -26,7 +26,7 @@ } .conversation-heading { - top: calc(var(--__panel-heading-height) * var(--currentPanelStack, 2)); + top: calc(var(--__panel-heading-height) * var(--currentPanelStack, 1) + var(--navbar-height)); z-index: 2; } -- cgit v1.2.3-70-g09d2