diff options
Diffstat (limited to 'frontend/src/components/Settings.css')
| -rw-r--r-- | frontend/src/components/Settings.css | 17 |
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 |
