Skip to content

Commit 9e7041b

Browse files
committed
Style: improve font family
1 parent 5d9a4f5 commit 9e7041b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Sprint-3/quote-generator/style.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,23 @@
44
--secondary-color: #ffffff;
55
}
66

7+
* {
8+
box-sizing: border-box;
9+
margin: 0;
10+
padding: 0;
11+
}
12+
713
body {
814
background-color: var(--primary-color);
915
display: flex;
1016
justify-content: center;
1117
align-items: center;
12-
height: 100vh;
18+
min-height: 100vh;
19+
padding: 1rem;
20+
font-family:
21+
system-ui,
22+
-apple-system,
23+
sans-serif;
1324
}
1425

1526
main {

0 commit comments

Comments
 (0)