Skip to content

Commit 85e93e7

Browse files
committed
refactor(pages): add a global padding on the home page
1 parent a766301 commit 85e93e7

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

pages/index.vue

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<template>
22
<div class="bg-gray">
33
<Hero />
4-
<LastUpdated />
5-
<LazyHydrate when-visible>
6-
<Stats />
7-
</LazyHydrate>
8-
<LazyHydrate when-visible>
9-
<TopDevelopers />
10-
</LazyHydrate>
4+
<div class="px-8 md:px-14 lg:px-24">
5+
<LastUpdated />
6+
<LazyHydrate when-visible>
7+
<Stats />
8+
</LazyHydrate>
9+
<LazyHydrate when-visible>
10+
<TopDevelopers />
11+
</LazyHydrate>
12+
</div>
1113
</div>
1214
</template>
1315

0 commit comments

Comments
 (0)