From fe7dce1cde5a8f105b5bcbb824f7f737fa153c88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 2 Mar 2026 15:42:47 +0100 Subject: [PATCH] fix: reduce button size in RandomGenerator and ExpressionPanel Co-Authored-By: Claude Sonnet 4.6 --- components/calculate/ExpressionPanel.tsx | 2 +- components/random/RandomGenerator.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/calculate/ExpressionPanel.tsx b/components/calculate/ExpressionPanel.tsx index e00d21f..40fe26a 100644 --- a/components/calculate/ExpressionPanel.tsx +++ b/components/calculate/ExpressionPanel.tsx @@ -162,7 +162,7 @@ export function ExpressionPanel() { onClick={handleSubmit} disabled={!expression.trim()} className={cn( - 'mt-2 w-full py-2 rounded-lg text-sm font-medium transition-all', + 'mt-2 w-full py-2 rounded-lg text-xs font-medium transition-all', 'bg-primary/90 text-primary-foreground hover:bg-primary', 'disabled:opacity-30 disabled:cursor-not-allowed' )} diff --git a/components/random/RandomGenerator.tsx b/components/random/RandomGenerator.tsx index 4a3ea5a..1fda63f 100644 --- a/components/random/RandomGenerator.tsx +++ b/components/random/RandomGenerator.tsx @@ -384,7 +384,7 @@ export function RandomGenerator() {