hugo-theme-mofo

Minimal theme for Hugo
git clone https://git.bracken.jp/hugo-theme-mofo.git
Log | Files | Refs | LICENSE

commit d8222ddf1b5faf7bcc7383888ca7b9e96856c864
parent 8c29bf1237b4f8e38e18469cb01da098973a7cd9
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri,  1 May 2020 22:23:36 -0700

Reset max width to 650 overflow-x auto in pre

Returns the width back to what it was in
33c43d9538efb09ad0ebdffa994228e7ad04c915.

Diffstat:
Mstatic/css/site.css | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/static/css/site.css b/static/css/site.css @@ -22,7 +22,7 @@ body { font-size: 16px; line-height: 1.6; margin: 40px auto; - max-width: 700px; + max-width: 650px; padding: 0 10px } pre { @@ -31,6 +31,7 @@ pre { border-radius: 2px; font-size: 12px; line-height: 1.1; + overflow-x: auto; padding: 10px; } code { font-size: 14px; line-height: 1.2; }