Skip to content

Commit 6ff99b2

Browse files
committed
🔧 fix: playground roundness
1 parent f23495d commit 6ff99b2

File tree

2 files changed

+2
-2
lines changed
  • docs
    • components/xiao/playground/components
    • tutorial/patterns/macro

2 files changed

+2
-2
lines changed

docs/components/xiao/playground/components/doc.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
:class="{ hidden: store.tab.aside !== 'docs' }"
2222
:src="store.doc"
2323
/>
24-
<article class="relative w-full h-full overflow-x-hidden overflow-y-auto">
24+
<article class="relative w-full h-full overflow-x-hidden overflow-y-auto rounded-xl">
2525
<Ray
2626
class="top-0 h-42 opacity-40 dark:opacity-100 pointer-events-none"
2727
/>

docs/tutorial/patterns/macro/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ new Elysia()
115115
if(!isFibonacci(body)) return status(418)
116116
}
117117
})
118-
.post('/fibo', ({ body }) => body, {
118+
.post('/', ({ body }) => body, {
119119
isFibonacci: true
120120
})
121121
.listen(3000)

0 commit comments

Comments
 (0)