Skip to content

Commit 18bbb28

Browse files
committed
Add spacing between items
Also fix padding not being respected when blocks exceed container height.
1 parent 21cfeb9 commit 18bbb28

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/browser/pages/global.css

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
html,
22
body,
3-
#root,
4-
.center-container {
3+
#root {
54
height: 100%;
65
width: 100%;
76
}
87

8+
.center-container {
9+
min-height: 100%;
10+
width: 100%;
11+
}
12+
913
body {
1014
background: rgb(244, 247, 252);
1115
color: #111;

src/browser/pages/home.css

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
.block-row > .item {
66
flex: 1;
7+
margin: 2px 0;
78
}
89

910
.block-row > .item.-row {

0 commit comments

Comments
 (0)