changed font-size to fix overflowing issue

This commit is contained in:
Luca Haid
2025-12-04 12:21:32 +00:00
parent 8c020c6329
commit 3c3f0c15a9
+1 -1
View File
@@ -2,7 +2,7 @@
$maxLength = max(mb_strlen($firstline ?? ''), mb_strlen($secondline ?? ''), mb_strlen($thirdline ?? ''));
$fontSize = '13px';
if ($maxLength <= 11) $fontSize = '28px';
if ($maxLength <= 11) $fontSize = '20px';
elseif ($maxLength <= 20) $fontSize = '18px';
elseif ($maxLength <= 45) $fontSize = '16px';