From 50af0ac0d1943933ada61f541f293aed7f30474d Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 17 Dec 2017 15:07:30 +0000 Subject: [PATCH] Container: fix marging to be padding so size is correct. --- src/widgets/Container.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/Container.css b/src/widgets/Container.css index 3c34edf..d1d3a39 100644 --- a/src/widgets/Container.css +++ b/src/widgets/Container.css @@ -4,8 +4,8 @@ } @media (min-width: 768px) { .Container { - margin-top: 40px; - margin-bottom: 40px; + padding-top: 40px; + padding-bottom: 40px; width: 750px; } }