From b31d84c68a76d6259eaaf9629338be9f5ff654e1 Mon Sep 17 00:00:00 2001 From: Deepjyoti Barman Date: Tue, 15 Sep 2020 20:45:31 +0530 Subject: [PATCH] Add top margin for the squares The squares kind of stick to the top when there is more than one row of them. This is fixed by adding a top margin to all the squares. --- css/main.css | 3 ++- scss/main.scss | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index 5b8606e..7ce1d48 100644 --- a/css/main.css +++ b/css/main.css @@ -92,7 +92,8 @@ body { background: #2e2e2e; padding: 15px 15px; border-radius: 6px; - min-height: 150px; } + min-height: 150px; + margin-top: 10px; } .main #other-content .sqr h4 { font-size: 18px; margin: 15px; } diff --git a/scss/main.scss b/scss/main.scss index fc4ccc1..5583d79 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -138,6 +138,7 @@ body { padding: 15px 15px; border-radius: 6px; min-height: 150px; + margin-top: 10px; h4 { font-size: 18px;