From 746ecd856a725d431846190f0557ee78dd203afc Mon Sep 17 00:00:00 2001 From: Will Faught Date: Sun, 12 Mar 2023 00:11:41 -0800 Subject: [PATCH] Remove max_width param --- README.md | 1 - layouts/partials/paige/style.html | 6 ------ 2 files changed, 7 deletions(-) diff --git a/README.md b/README.md index b89aedd6..763ee843 100644 --- a/README.md +++ b/README.md @@ -301,7 +301,6 @@ paige: git: commit_url_prefix: "" # Example is "https://github.com/willfaught/paige/commit/" math: false # Enable math typesetting - max_width: "" # CSS unit; maximum width for the whole page menu: breakpoint: "sm" # Bootstrap breakpoint at which to display all menu items style: "pills" # Must be "links" or "pills" diff --git a/layouts/partials/paige/style.html b/layouts/partials/paige/style.html index 4b78cacb..aabb637e 100644 --- a/layouts/partials/paige/style.html +++ b/layouts/partials/paige/style.html @@ -109,12 +109,6 @@ body, html { } } -{{ with $page.Param "paige.max_width" }} - #paige-root { - max-width: {{ . | safeCSS }}; - } -{{ end }} - {{ with $page.Param "paige.style" }} {{ . | safeCSS }} {{ end }}