From 6b65d57315579a2561fcebbe6cb9d45ffe001cd1 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Mon, 2 Sep 2024 09:32:52 +0200 Subject: [PATCH] Correct error: in small, the text should not be wider than the header/footer --- themes/hugo-theme-ipng/assets/styles.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/hugo-theme-ipng/assets/styles.scss b/themes/hugo-theme-ipng/assets/styles.scss index 085e20e..d78f1cb 100644 --- a/themes/hugo-theme-ipng/assets/styles.scss +++ b/themes/hugo-theme-ipng/assets/styles.scss @@ -79,7 +79,7 @@ main { padding-bottom: 5em; @media #{$mq-mini} { margin: 0 2%; } - @media #{$mq-small} { margin: 0 2%; } + @media #{$mq-small} { margin: 0 5%; } @media #{$mq-medium} { margin: 0 17%; } @media #{$mq-large} { margin: 0 21%; } @media #{$mq-xlarge} { margin: 0 24%; }