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.
This commit is contained in:
Deepjyoti Barman
2020-09-15 20:45:31 +05:30
parent c536886eb9
commit b31d84c68a
2 changed files with 3 additions and 1 deletions

View File

@@ -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; }

View File

@@ -138,6 +138,7 @@ body {
padding: 15px 15px;
border-radius: 6px;
min-height: 150px;
margin-top: 10px;
h4 {
font-size: 18px;