Skip to content

Commit f49a3f1

Browse files
docs: fix main dark bg (#2826)
1 parent d7c9ce9 commit f49a3f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

www/routes/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default define.page<typeof handler>(function MainPage(props) {
5151
const origin = `${props.url.protocol}//${props.url.host}`;
5252

5353
return (
54-
<div class="flex flex-col min-h-screen">
54+
<div class="flex flex-col min-h-screen bg-white">
5555
<div class="bg-transparent flex flex-col relative z-10">
5656
<HelloBar />
5757
<Header title="" active="/" />

www/routes/showcase.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const handler = define.handlers({
2020

2121
export default define.page<typeof handler>(function ShowcasePage() {
2222
return (
23-
<>
23+
<div class="bg-white">
2424
<Header title="showcase" active="/showcase" />
2525

2626
<div class="flex flex-col min-h-screen">
@@ -70,7 +70,7 @@ export default define.page<typeof handler>(function ShowcasePage() {
7070

7171
<Footer />
7272
</div>
73-
</>
73+
</div>
7474
);
7575
});
7676

0 commit comments

Comments
 (0)