diff --git a/src/lib/components/ProfileSwitcher.svelte b/src/lib/components/ProfileSwitcher.svelte index d68db80..9f674d6 100644 --- a/src/lib/components/ProfileSwitcher.svelte +++ b/src/lib/components/ProfileSwitcher.svelte @@ -99,7 +99,7 @@ align-items: center; gap: 0.4rem; padding: 0.5rem 0.9rem; - border-radius: 999px; + border-radius: var(--pill-radius); border: 1px solid #cfd9d1; background: white; font-size: 0.95rem; diff --git a/src/lib/components/RecipeView.svelte b/src/lib/components/RecipeView.svelte index d4938b5..e9ef736 100644 --- a/src/lib/components/RecipeView.svelte +++ b/src/lib/components/RecipeView.svelte @@ -204,7 +204,7 @@ .pill { padding: 0.15rem 0.55rem; background: #eaf4ed; - border-radius: 999px; + border-radius: var(--pill-radius); font-size: 0.8rem; color: #2b6a3d; } diff --git a/src/lib/components/SyncIndicator.svelte b/src/lib/components/SyncIndicator.svelte index e3b7354..df97167 100644 --- a/src/lib/components/SyncIndicator.svelte +++ b/src/lib/components/SyncIndicator.svelte @@ -77,7 +77,7 @@ padding: 0.3rem 0.65rem; background: white; border: 1px solid #cfd9d1; - border-radius: 999px; + border-radius: var(--pill-radius); color: #555; font-size: 0.78rem; cursor: pointer; diff --git a/src/lib/components/UpdateToast.svelte b/src/lib/components/UpdateToast.svelte index bcf383b..6634345 100644 --- a/src/lib/components/UpdateToast.svelte +++ b/src/lib/components/UpdateToast.svelte @@ -28,7 +28,7 @@ padding: 0.6rem 0.85rem 0.6rem 1.1rem; background: #1a1a1a; color: white; - border-radius: 999px; + border-radius: var(--pill-radius); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); z-index: 500; max-width: calc(100% - 2rem); @@ -58,7 +58,7 @@ background: #2b6a3d; color: white; border: 0; - border-radius: 999px; + border-radius: var(--pill-radius); font-size: 0.88rem; cursor: pointer; font-weight: 600; @@ -75,7 +75,7 @@ padding: 4px; display: inline-flex; align-items: center; - border-radius: 999px; + border-radius: var(--pill-radius); flex-shrink: 0; } .dismiss:hover { diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 6450400..bf32315 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -386,6 +386,9 @@