aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedList.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 07:46:58 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 09:38:38 -0800
commit23a48e1d498680be769e931f46ddb1fd44f38d1a (patch)
tree54bb607e19b3eec0e5c932e6748d9ca6304d4b17 /frontend/src/components/FeedList.css
parenta5cd9538b0db731a0d0e10e58804ef8ad32211b7 (diff)
downloadneko-23a48e1d498680be769e931f46ddb1fd44f38d1a.tar.gz
neko-23a48e1d498680be769e931f46ddb1fd44f38d1a.tar.bz2
neko-23a48e1d498680be769e931f46ddb1fd44f38d1a.zip
Implement Tag View and fix tests
Diffstat (limited to 'frontend/src/components/FeedList.css')
-rw-r--r--frontend/src/components/FeedList.css36
1 files changed, 35 insertions, 1 deletions
diff --git a/frontend/src/components/FeedList.css b/frontend/src/components/FeedList.css
index f35ed59..485fab3 100644
--- a/frontend/src/components/FeedList.css
+++ b/frontend/src/components/FeedList.css
@@ -45,4 +45,38 @@
border-radius: 4px;
font-size: 0.8rem;
color: #666;
-} \ No newline at end of file
+}
+.tag-section {
+ margin-top: 2rem;
+ border-top: 1px solid #eee;
+ padding-top: 1rem;
+}
+
+.tag-list-items {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ flex-wrap: wrap;
+ gap: 0.5rem;
+}
+
+.tag-item {
+ display: inline-block;
+}
+
+.tag-link {
+ display: block;
+ padding: 0.3rem 0.6rem;
+ background: #e9ecef;
+ border-radius: 12px;
+ text-decoration: none;
+ color: #333;
+ font-size: 0.9rem;
+ transition: background-color 0.2s;
+}
+
+.tag-link:hover {
+ background: #dde2e6;
+ color: #000;
+}