From 49dc4b4f00b2e5cc1e0fe19fcd68adff7b58ee9d Mon Sep 17 00:00:00 2001 From: kuu7o Date: Wed, 19 Nov 2025 01:06:17 -0300 Subject: [PATCH] fix(css): timeline tweets now are separated by 5px --- src/sass/index.scss | 1 - src/sass/timeline.scss | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/sass/index.scss b/src/sass/index.scss index 5a9e81c..0f5de15 100644 --- a/src/sass/index.scss +++ b/src/sass/index.scss @@ -127,7 +127,6 @@ ul { max-width: 600px; width: 100%; margin: 0 auto; - margin-top: 10px; background-color: var(--bg_overlays); padding: 10px 15px; align-self: start; diff --git a/src/sass/timeline.scss b/src/sass/timeline.scss index c8ce309..85c4be8 100644 --- a/src/sass/timeline.scss +++ b/src/sass/timeline.scss @@ -2,13 +2,14 @@ .timeline-container { @include panel(100%, 600px); + background-color: transparent; } .timeline { - background-color: var(--bg_panel); + background-color: transparent; > div:not(:first-child) { - border-top: 1px solid var(--border_grey); + border-top: none; } } @@ -159,4 +160,6 @@ padding: .75em; display: flex; position: relative; + margin-top: 5px; + background-color: var(--bg_panel); }