fix(page-width): add back page width override via css variable (#748)

* fix(page-width): add back page width override via css variable

* refactor(css): update CSS variable references for site parameters
This commit is contained in:
Xin
2025-08-14 23:12:23 +08:00
committed by GitHub
parent 4d861d7175
commit eca7665571
3 changed files with 11 additions and 4 deletions

View File

@@ -53,7 +53,6 @@
<link href="{{ $customCss.RelPermalink }}" rel="stylesheet" />
{{- end }}
<!-- Google Analytics -->
{{- if and hugo.IsProduction .Site.Config.Services.GoogleAnalytics.ID }}
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
@@ -92,5 +91,6 @@
{{ partialCached "scripts/mathjax.html" . -}}
{{ end -}}
{{ partial "utils/page-width-override.html" . }}
{{ partial "custom/head-end.html" . -}}
</head>

View File

@@ -0,0 +1,7 @@
{{- with .Params.width -}}
<style>
:root {
--hextra-max-page-width: {{ cond (eq . "wide") "90rem" (cond (eq . "full") "100%" "80rem") }};
}
</style>
{{- end -}}