mirror of
https://github.com/imfing/hextra.git
synced 2025-08-23 20:36:37 -04:00
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:
7
layouts/_partials/utils/page-width-override.html
Normal file
7
layouts/_partials/utils/page-width-override.html
Normal 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 -}}
|
Reference in New Issue
Block a user