From 61d03d2e6f1b1534c8facec6f8ae186ef64c4355 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 13 Jan 2016 17:26:29 +0100 Subject: [PATCH] fix frame computation --- ralf/_sass/_layout.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ralf/_sass/_layout.scss b/ralf/_sass/_layout.scss index cde604e..299869f 100644 --- a/ralf/_sass/_layout.scss +++ b/ralf/_sass/_layout.scss @@ -14,7 +14,7 @@ body { /* This centers us in the page, and handles the "too wide" case */ padding-top: $outer-margin; /* distance of top to window border */ padding-bottom: $outer-margin; /* distance of page-bottom to window border */ border-left: solid $text-color 1px; - min-height: calc(100vh - #{$outer-margin}); + min-height: calc(100vh - #{2*$outer-margin}); } /* The content of the frame */ -- 2.30.2