From 6d979920a2d72629c7ae54cffa5260ce115a70a2 Mon Sep 17 00:00:00 2001 From: IDeathByte <41571062+IDeathByte@users.noreply.github.com> Date: Fri, 17 Oct 2025 02:26:30 +0500 Subject: [PATCH] Fix for fix for browser height scalability Little smaller text for stats bar without high price for readability - should work better on chrome etc. Also should work correct on ultrawide (21:9) screens now. I hope =\ --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index d36a13c..d214b55 100644 --- a/style.css +++ b/style.css @@ -746,7 +746,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld { .rpg-stat-label { min-width: 4.062rem; - font-size: clamp(0.9vw, 0.95vw, 1vw); + font-size: clamp(0.5vw, 0.6vw, 0.7vw); font-weight: 600; text-align: left; color: var(--rpg-text); @@ -776,7 +776,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld { .rpg-stat-value { color: #fff; - font-size: clamp(0.9vw, 0.95vw, 1vw); + font-size: clamp(0.5vw, 0.6vw, 0.7vw); font-weight: bold; min-width: 1.875rem; text-align: right;