From 31ed600c97b4ede9d924ba02826a4f7b622599d1 Mon Sep 17 00:00:00 2001 From: Frank Schwenk Date: Thu, 30 Oct 2025 10:34:30 +0100 Subject: [PATCH] fix(build): remove stray CSS brace causing esbuild minify warning Fix unexpected '}' in src/styles/index.css after .btn--secondary:hover.\nEliminates Vite/esbuild css-syntax-error during production build.\n\nRefs #26 --- src/styles/index.css | 1 - 1 file changed, 1 deletion(-) diff --git a/src/styles/index.css b/src/styles/index.css index f81533b..874741d 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -161,7 +161,6 @@ input:focus, select:focus { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); } -} .btn-primary:hover { background: var(--color-primary-hover);