aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/Settings.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 09:30:16 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 09:30:16 -0800
commit22eacbaf2712aee2a1c448a0e53f241f8c7bd255 (patch)
tree29d5f20166c378e082216346043585cb3a0cc74c /frontend/src/components/Settings.css
parent08032aab10f0e1429d25ecae1acf6c40d63e9ff4 (diff)
downloadneko-22eacbaf2712aee2a1c448a0e53f241f8c7bd255.tar.gz
neko-22eacbaf2712aee2a1c448a0e53f241f8c7bd255.tar.bz2
neko-22eacbaf2712aee2a1c448a0e53f241f8c7bd255.zip
ui: simplify themes to light/dark and improve theme-aware styling (fixing NK-dp5efo)
Diffstat (limited to 'frontend/src/components/Settings.css')
-rw-r--r--frontend/src/components/Settings.css17
1 files changed, 10 insertions, 7 deletions
diff --git a/frontend/src/components/Settings.css b/frontend/src/components/Settings.css
index 6e74475..171dcad 100644
--- a/frontend/src/components/Settings.css
+++ b/frontend/src/components/Settings.css
@@ -5,11 +5,11 @@
}
.add-feed-section {
- background: #f9f9f9;
+ background: var(--sidebar-bg);
padding: 1.5rem;
border-radius: 8px;
margin-bottom: 2rem;
- border: 1px solid #eee;
+ border: 1px solid var(--border-color);
}
.add-feed-form {
@@ -20,7 +20,9 @@
.feed-input {
flex: 1;
padding: 0.5rem;
- border: 1px solid #ccc;
+ border: 1px solid var(--border-color);
+ background: var(--bg-color);
+ color: var(--text-color);
border-radius: 4px;
font-size: 1rem;
}
@@ -33,7 +35,7 @@
.settings-feed-list {
list-style: none;
padding: 0;
- border: 1px solid #eee;
+ border: 1px solid var(--border-color);
border-radius: 8px;
}
@@ -42,7 +44,7 @@
justify-content: space-between;
align-items: center;
padding: 1rem;
- border-bottom: 1px solid #eee;
+ border-bottom: 1px solid var(--border-color);
}
.settings-feed-item:last-child {
@@ -61,7 +63,8 @@
}
.feed-url {
- color: #666;
+ color: var(--text-color);
+ opacity: 0.6;
font-size: 0.9rem;
}
@@ -81,4 +84,4 @@
.delete-btn:disabled {
background: #ffcdd2;
cursor: not-allowed;
-}
+} \ No newline at end of file