From e01cb075c699708a917cbd3b2c40fff8c8ddfd09 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Wed, 11 Mar 2026 16:55:18 +0100 Subject: [PATCH] style: change button and badge font-weight to semi-bold (600) --- src/ui/badge.css | 2 +- src/ui/button.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/badge.css b/src/ui/badge.css index 67a15ac..922b165 100644 --- a/src/ui/badge.css +++ b/src/ui/badge.css @@ -4,7 +4,7 @@ gap: var(--size-1); padding: var(--size-1) var(--size-3); font-size: var(--font-sm); - font-weight: 500; + font-weight: 600; line-height: var(--size-5); border-radius: 9999px; background: var(--accent); diff --git a/src/ui/button.css b/src/ui/button.css index 33df2f5..8786d70 100644 --- a/src/ui/button.css +++ b/src/ui/button.css @@ -5,7 +5,7 @@ gap: 0.5em; padding: var(--size-2) var(--size-4); font-size: var(--font-sm); - font-weight: 500; + font-weight: 600; line-height: var(--size-5); border: none; border-radius: var(--radius-md);