From d45c14f5b872067d03585348bcccbf53e7ff03d4 Mon Sep 17 00:00:00 2001 From: xangelo Date: Fri, 26 Jan 2024 23:31:28 -0500 Subject: [PATCH] add separator between each "group" of feeds --- src/public/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/public/style.css b/src/public/style.css index 7f934ca..011edad 100644 --- a/src/public/style.css +++ b/src/public/style.css @@ -12,6 +12,14 @@ } } + .header::before { + content: ''; + border: solid 0 #aaa; + border-top-width: 1px; + width: 100%; + display: block; + margin-bottom: 1rem; + } .content { margin-left: 1rem; padding: 0 0.6rem; -- 2.25.1