From 2b593a528a05dc42f1b2168a11699f1fb65e79c5 Mon Sep 17 00:00:00 2001 From: Kirik Date: Wed, 12 Nov 2025 20:51:19 +0100 Subject: [PATCH] Fix accessibility: Allow viewport zooming for users with low vision - Remove user-scalable=no which blocks zooming - Add maximum-scale=5 to allow users to magnify up to 5x - Complies with accessibility guidelines (WCAG 2.1) - Allows screen magnification users to properly see content --- themes/hugo-theme-massively/layouts/partials/htmlhead.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/hugo-theme-massively/layouts/partials/htmlhead.html b/themes/hugo-theme-massively/layouts/partials/htmlhead.html index 325ee50..fa8f4e2 100644 --- a/themes/hugo-theme-massively/layouts/partials/htmlhead.html +++ b/themes/hugo-theme-massively/layouts/partials/htmlhead.html @@ -8,7 +8,7 @@ {{ if eq (.Site.Title) (.Title) }}{{ .Site.Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }} - + {{ if hugo.IsServer }} {{ $style := resources.Get "scss/main.scss" | resources.ExecuteAsTemplate "main.scss" . | toCSS (dict "targetPath" "assets/css/main.css" "enableSourceMap" true) }}