From bca0c1e8338357c0cceee42e8102dfdfb34d0024 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 28 Aug 2023 12:06:06 +0200 Subject: [PATCH] Fix CSS styles (Wikimedia does not permit font-size with px) Signed-off-by: Stefan Weil --- assets/styles/app.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/styles/app.css b/assets/styles/app.css index 12d52c27..732c5087 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -37,12 +37,12 @@ body.rtl .logo { } .page-subtitle { - font-size: 14px; + font-size: 1em; } .form-heading { border-bottom: 1px solid #e5e5e5; - font-size: 22px; + font-size: 1.5em; margin: 25px 0; }