aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedItem.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 17:07:04 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 17:07:04 -0800
commit777c55c742066c674d544604a388d15b782769ff (patch)
tree7833d5accfdb43b7cbb9a9d20cf628fbedbd004f /frontend/src/components/FeedItem.css
parent993fa16af4fb5891fa9eb06be728933030cf3953 (diff)
downloadneko-777c55c742066c674d544604a388d15b782769ff.tar.gz
neko-777c55c742066c674d544604a388d15b782769ff.tar.bz2
neko-777c55c742066c674d544604a388d15b782769ff.zip
style(v2): move star to right of title and match legacy look (NK-35kxxw)
Diffstat (limited to 'frontend/src/components/FeedItem.css')
-rw-r--r--frontend/src/components/FeedItem.css11
1 files changed, 5 insertions, 6 deletions
diff --git a/frontend/src/components/FeedItem.css b/frontend/src/components/FeedItem.css
index 1e7b9bd..bdca707 100644
--- a/frontend/src/components/FeedItem.css
+++ b/frontend/src/components/FeedItem.css
@@ -48,24 +48,23 @@
background: none;
border: none;
cursor: pointer;
- font-size: 1.2rem;
- padding: 0 0.5rem 0 0;
+ font-size: 1.25rem;
+ padding: 0 0 0 0.5rem;
vertical-align: middle;
transition: color 0.2s;
line-height: 1;
}
.star-btn.is-starred {
- color: #ffd700;
- /* Gold */
+ color: blue;
}
.star-btn.is-unstarred {
- color: #ccc;
+ color: black;
}
.star-btn:hover {
- color: #ffeb3b;
+ color: blue;
}
.action-btn {