From a0990fc3f6f52323116ae2484fe85636209dcb84 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Tue, 18 Aug 2026 03:09:35 +0000 Subject: [PATCH] Fix brand text placing issue with purple theme. --- frontend/src/assets/themes/purple/theme.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/assets/themes/purple/theme.css b/frontend/src/assets/themes/purple/theme.css index 1498cbf..caac1e6 100644 --- a/frontend/src/assets/themes/purple/theme.css +++ b/frontend/src/assets/themes/purple/theme.css @@ -28,7 +28,9 @@ #brand { font-size: clamp(3.2rem, 9vw, 7.5rem); line-height: 1; - margin-bottom: -0.28em; + /* Ensure below baseline stays visible */ + padding-bottom: 0.3em; + margin-bottom: -0.3em; transform: rotate(-2deg); transform-origin: left bottom; background: linear-gradient(90deg, var(--accent), var(--accent2));