Files
hextra_mirror/layouts/_partials/utils/page-width-override.html
Xin eca7665571 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
2025-08-14 23:12:23 +08:00

8 lines
163 B
HTML

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