Files
RAPPORT-WEBSITE/themes/hextra/layouts/_partials/utils/page-width-override.html
T
2026-05-26 11:52:03 +02:00

11 lines
328 B
HTML

{{- with .Params.width -}}
{{- $pageWidthValues := dict "normal" "80rem" "wide" "90rem" "full" "100%" -}}
{{- $pageWidth := . -}}
{{- $maxPageWidth := (index $pageWidthValues $pageWidth) | default (index $pageWidthValues "normal") -}}
<style>
:root {
--hextra-max-page-width: {{ $maxPageWidth }};
}
</style>
{{- end -}}