aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedList.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 17:29:12 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 17:29:12 -0800
commit9c1c131603677371eab0e6b6956481a661f14628 (patch)
tree09b36ae29535512ffe08982282298896c0fc3f72 /frontend/src/components/FeedList.css
parent988de1e688e4df27a21f62782ecaabf96b819dfe (diff)
downloadneko-9c1c131603677371eab0e6b6956481a661f14628.tar.gz
neko-9c1c131603677371eab0e6b6956481a661f14628.tar.bz2
neko-9c1c131603677371eab0e6b6956481a661f14628.zip
feat(v2/ui): add theme toggle and collapse sidebar by default (NK-gnxc6e, NK-k4y597)
Diffstat (limited to 'frontend/src/components/FeedList.css')
-rw-r--r--frontend/src/components/FeedList.css35
1 files changed, 34 insertions, 1 deletions
diff --git a/frontend/src/components/FeedList.css b/frontend/src/components/FeedList.css
index d91a8ac..d0ee9eb 100644
--- a/frontend/src/components/FeedList.css
+++ b/frontend/src/components/FeedList.css
@@ -119,6 +119,39 @@
.feed-title.active,
.tag-link.active,
-.filter-list li a.active {
+.filter-list li a.active,
+.theme-selector button.active {
font-weight: bold !important;
+}
+
+.theme-section {
+ margin-top: 2rem;
+ padding-bottom: 2rem;
+}
+
+.theme-selector {
+ display: flex;
+ justify-content: space-between;
+ gap: 5px;
+}
+
+.theme-selector button {
+ font-size: 0.8rem;
+ padding: 0.2rem 0.5rem;
+ width: 30%;
+ background: whitesmoke;
+ color: blue;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-variant: small-caps;
+ text-transform: lowercase;
+}
+
+.theme-selector button:hover {
+ background: #eee;
+}
+
+.theme-selector button.active {
+ color: black;
+ border-color: #000;
} \ No newline at end of file