From b2be00b125ace35d130d7dbaf1c4d9d7c527be0e Mon Sep 17 00:00:00 2001 From: mareklach Date: Fri, 26 Nov 2021 16:50:08 +0000 Subject: [PATCH] Fix article title overflowing on small screens Improves CSS scaling of the article title for mobile-sized screens, to prevent it spilling over. --- assets/themes/default/_global.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/themes/default/_global.scss b/assets/themes/default/_global.scss index d802a709..b6c0e5da 100644 --- a/assets/themes/default/_global.scss +++ b/assets/themes/default/_global.scss @@ -236,9 +236,9 @@ p.error { font-family: $playfair; font-size: 1.75em; font-weight: normal; - line-height: 1.75; - display: inline-block; - position: absolute; + line-height: 1.10; + display: block; + position: relative; a { display: block; transition: color 0.1s ease-in;