Skip to content

Commit 6978102

Browse files
committed
Use max-width instead of padding the body
This makes it look slightly less weird/compressed on mobile
1 parent 8f13668 commit 6978102

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/style.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ body {
99
background-color: var(--c_bg);
1010
color: var(--c_text);
1111
font-family: sans-serif;
12-
padding-left: 10vw;
13-
padding-right: 10vw;
12+
padding-left: 10px;
13+
padding-right: 10px;
14+
max-width: 1500px;
15+
margin: auto;
1416
text-align: left;
1517
}
1618

0 commit comments

Comments
 (0)