Skip to content

Commit ce6e5a7

Browse files
committed
Add max width to main content, Add bun dev task
1 parent 0a53340 commit ce6e5a7

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.vscode/tasks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "bun",
6+
"script": "dev",
7+
"problemMatcher": [],
8+
"label": "bun: dev",
9+
"detail": "bun --bun vinxi dev"
10+
}
11+
]
12+
}

src/routes/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function Home() {
1818
});
1919

2020
return (
21-
<main class="mx-4 mt-4 text-center">
21+
<main class="container mx-auto px-4 pt-4 text-center">
2222
<BirdContext.Provider value={[state, setState]}>
2323
<div class="hidden lg:block">
2424
<div class="flex flex-col lg:flex-row">

0 commit comments

Comments
 (0)