fix(css): timeline tweets now are separated by 5px

This commit is contained in:
2025-11-19 01:06:17 -03:00
parent c654cdf57e
commit 49dc4b4f00
2 changed files with 5 additions and 3 deletions

View File

@@ -127,7 +127,6 @@ ul {
max-width: 600px; max-width: 600px;
width: 100%; width: 100%;
margin: 0 auto; margin: 0 auto;
margin-top: 10px;
background-color: var(--bg_overlays); background-color: var(--bg_overlays);
padding: 10px 15px; padding: 10px 15px;
align-self: start; align-self: start;

View File

@@ -2,13 +2,14 @@
.timeline-container { .timeline-container {
@include panel(100%, 600px); @include panel(100%, 600px);
background-color: transparent;
} }
.timeline { .timeline {
background-color: var(--bg_panel); background-color: transparent;
> div:not(:first-child) { > div:not(:first-child) {
border-top: 1px solid var(--border_grey); border-top: none;
} }
} }
@@ -159,4 +160,6 @@
padding: .75em; padding: .75em;
display: flex; display: flex;
position: relative; position: relative;
margin-top: 5px;
background-color: var(--bg_panel);
} }