From ba8229d46485d7a260f68eea065f1e2bb8fb8c3d Mon Sep 17 00:00:00 2001 From: Gigi Date: Tue, 14 Oct 2025 09:24:49 +0200 Subject: [PATCH] refactor(css): update pull-to-refresh to use semantic tokens --- src/styles/components/pull-to-refresh.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/styles/components/pull-to-refresh.css b/src/styles/components/pull-to-refresh.css index f181f85f..da978c2e 100644 --- a/src/styles/components/pull-to-refresh.css +++ b/src/styles/components/pull-to-refresh.css @@ -21,21 +21,21 @@ display: flex; align-items: center; justify-content: center; - background: var(--background-secondary); + background: var(--color-bg-elevated); border-radius: 50%; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; font-size: 1rem; - color: var(--text-secondary); + color: var(--color-text-secondary); } .pull-to-refresh-text { font-size: 0.75rem; - color: var(--text-secondary); + color: var(--color-text-secondary); text-align: center; white-space: nowrap; font-weight: 500; - background: var(--background-secondary); + background: var(--color-bg-elevated); padding: 0.25rem 0.75rem; border-radius: 1rem; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);