From f919ca0fe807b2892c691fc3cdba51f25354cfce Mon Sep 17 00:00:00 2001 From: droideparanoico Date: Sun, 14 Jun 2026 13:00:31 +0200 Subject: [PATCH] fix: override js-dos DaisyUI button properties (text-transform, height) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit js-dos v8 uses DaisyUI which sets text-transform:uppercase, height:3rem on .btn — these cascade through even after our specificity fix because we didn't define those properties. Added explicit overrides. --- frontend/src/app.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/app.css b/frontend/src/app.css index 5aafc64..778cfa4 100644 --- a/frontend/src/app.css +++ b/frontend/src/app.css @@ -98,7 +98,7 @@ h3 { font-size: 1.2rem; } /* ═══════════════════════════════════════════════════════════════ BUTTONS ═══════════════════════════════════════════════════════════════ */ -/* Double-class selector to win specificity against injected CSS */ +/* Double-class selector to win specificity against js-dos DaisyUI .btn */ .btn.btn { display: inline-flex; align-items: center; @@ -112,6 +112,9 @@ h3 { font-size: 1.2rem; } font-size: 0.9rem; font-weight: 600; cursor: pointer; + text-transform: none; + height: auto; + line-height: normal; transition: all 0.15s ease; } .btn.btn:hover {