diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 10:12:22 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 10:12:22 -0800 |
| commit | 9d3b2a90316a1a5f735845f61abbd8a875529060 (patch) | |
| tree | b51c86306a75c4ea57a0e733eeda67a099f15d58 /frontend/src/components/FeedList.css | |
| parent | 90fa99359fafea4b0e10a88716675de9de4593ed (diff) | |
| download | neko-9d3b2a90316a1a5f735845f61abbd8a875529060.tar.gz neko-9d3b2a90316a1a5f735845f61abbd8a875529060.tar.bz2 neko-9d3b2a90316a1a5f735845f61abbd8a875529060.zip | |
feat: add font theme support (fixing NK-rn4nzp)
Diffstat (limited to 'frontend/src/components/FeedList.css')
| -rw-r--r-- | frontend/src/components/FeedList.css | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/frontend/src/components/FeedList.css b/frontend/src/components/FeedList.css index 7bb0f4c..7c39901 100644 --- a/frontend/src/components/FeedList.css +++ b/frontend/src/components/FeedList.css @@ -1,6 +1,6 @@ .feed-list { padding: 1rem; - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: var(--font-heading); color: #777; /* specific v1 color */ font-size: 0.8rem; @@ -18,9 +18,6 @@ z-index: 10; padding-bottom: 0.5rem; color: var(--text-color); - /* Usually dark/white depending on theme, v1 was white on blue? No, white on fixed header? No, v1 logo class says color: white. But sidebar is #ccc. */ - /* In v1 logo was fixed top left (blue header bar?). In v2 sidebar is #ccc. - Let's use theme text color but maybe bolder? */ } /* Override logo color if necessary for themes */ @@ -55,7 +52,7 @@ margin: 1rem 0 0.25rem 0; cursor: pointer; user-select: none; - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: var(--font-heading); color: #333; /* Darker than list items */ text-transform: lowercase; |
