From f1c80ddaa23b3d24f8bc9d8c706b434591d9e86e Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Robles Date: Tue, 13 Feb 2018 15:55:10 +0200 Subject: [PATCH] Increase overall width to max 1000px The maximum width is currently set to 600px, while this works, it could easily have an increased width (say 1000px), which would improve readability of long code snippets. --- _sass/jekyll-theme-hacker.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/jekyll-theme-hacker.scss b/_sass/jekyll-theme-hacker.scss index bca8aa1..ccaba3a 100644 --- a/_sass/jekyll-theme-hacker.scss +++ b/_sass/jekyll-theme-hacker.scss @@ -21,7 +21,7 @@ body { .container { width: 90%; - max-width: 600px; + max-width: 1000px; margin: 0 auto; }