diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 19:37:49 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 19:37:49 -0800 |
| commit | 50a1a0a747cde56cfe139a823b3b6e70cc505c64 (patch) | |
| tree | b2e1ffc7d8ba0c358ea0e034d57a216cc2a22e11 | |
| parent | 3a93692c8b84d15cb1e47586fa41368abfa20aa9 (diff) | |
| download | neko-50a1a0a747cde56cfe139a823b3b6e70cc505c64.tar.gz neko-50a1a0a747cde56cfe139a823b3b6e70cc505c64.tar.bz2 neko-50a1a0a747cde56cfe139a823b3b6e70cc505c64.zip | |
fix(ui): keep titles blue and remove underline on hover (NK-rohuiq)
| -rw-r--r-- | frontend/src/components/FeedItem.css | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/components/FeedItem.css b/frontend/src/components/FeedItem.css index a6b92f6..1261737 100644 --- a/frontend/src/components/FeedItem.css +++ b/frontend/src/components/FeedItem.css @@ -6,7 +6,6 @@ } .feed-item.read .item-title { - color: #888; font-weight: normal; } @@ -32,7 +31,7 @@ } .item-title:hover { - text-decoration: underline; + text-decoration: none; color: var(--link-color); } |
