Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit b13703e

Browse files
committed
Update hello-world example
1 parent cd0fa71 commit b13703e

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

examples/hello-world/style/index.css

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,4 @@
1-
* {
2-
margin: 0;
3-
padding: 0;
4-
border: none;
5-
outline: none;
6-
font: inherit;
7-
font-size: 100%;
8-
vertical-align: baseline;
9-
background: transparent;
10-
}
11-
12-
body {
13-
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
14-
font-size: 16px;
15-
}
1+
@import url('./reset.css');
162

173
main {
184
display: flex;

examples/hello-world/style/reset.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
border: none;
5+
outline: none;
6+
font: inherit;
7+
font-size: 100%;
8+
vertical-align: baseline;
9+
background: transparent;
10+
}
11+
12+
body {
13+
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
14+
font-size: 16px;
15+
}

0 commit comments

Comments
 (0)