From da65d4bc1a1122d9ece6d0169542c1eb9d6cdae5 Mon Sep 17 00:00:00 2001 From: Forbes Date: Sun, 15 Feb 2026 12:38:20 -0600 Subject: [PATCH] feat(web): favicon, narrow settings, scrollable token list - Add kindred-logo.svg as site favicon (#115) - Narrow settings page to 66% max-width, centered (#116) - Add max-height and scroll to API token table (#118) Closes #115, closes #116, closes #118 --- web/index.html | 19 +++--- web/public/favicon.svg | 106 +++++++++++++++++++++++++++++++++ web/src/pages/SettingsPage.tsx | 11 +++- 3 files changed, 125 insertions(+), 11 deletions(-) create mode 100644 web/public/favicon.svg diff --git a/web/index.html b/web/index.html index 2a22464..5e87e92 100644 --- a/web/index.html +++ b/web/index.html @@ -1,12 +1,13 @@ - - - - Silo - - -
- - + + + + + Silo + + +
+ + diff --git a/web/public/favicon.svg b/web/public/favicon.svg new file mode 100644 index 0000000..64d4ea8 --- /dev/null +++ b/web/public/favicon.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + diff --git a/web/src/pages/SettingsPage.tsx b/web/src/pages/SettingsPage.tsx index 4a32a32..f68a8a8 100644 --- a/web/src/pages/SettingsPage.tsx +++ b/web/src/pages/SettingsPage.tsx @@ -90,7 +90,7 @@ export function SettingsPage() { }; return ( -
+

Settings

{/* Account Card */} @@ -217,7 +217,14 @@ export function SettingsPage() { {tokensError}

) : ( -
+
-- 2.49.1