From 6e28d1530aa08b878f5082bbcd85a95f84f830e8 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 14 Feb 2026 21:34:49 -0800 Subject: chore: update build artifacts and finalize test improvements --- frontend/coverage/src/components/FeedItem.css.html | 74 ++++++++++++++++++++-- 1 file changed, 70 insertions(+), 4 deletions(-) (limited to 'frontend/coverage/src/components/FeedItem.css.html') diff --git a/frontend/coverage/src/components/FeedItem.css.html b/frontend/coverage/src/components/FeedItem.css.html index 213077f..192959f 100644 --- a/frontend/coverage/src/components/FeedItem.css.html +++ b/frontend/coverage/src/components/FeedItem.css.html @@ -188,7 +188,51 @@ 123 124 125 -126  +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +        @@ -330,7 +374,7 @@ }   .item-title { - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: var(--font-heading); font-size: 1.8rem; font-weight: bold; text-decoration: none; @@ -429,7 +473,7 @@ border: 1px solid var(--border-color, #ccc); color: blue; cursor: pointer; - font-family: 'Helvetica Neue'; + font-family: var(--font-heading); font-weight: bold; font-size: 0.8rem; padding: 2px 6px; @@ -438,6 +482,28 @@   .scrape-btn:hover { background: var(--sidebar-bg); +} +  +@media (max-width: 768px) { + .feed-item { + margin-top: 2rem; + padding: 0.5rem; + } +  + .item-title { + font-size: 1.4rem; + word-break: break-word; + } +  + .item-header { + flex-direction: column; + gap: 0.5rem; + } +  + .item-actions { + margin-left: 0; + margin-bottom: 0.5rem; + } }
@@ -445,7 +511,7 @@