We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f23495d commit 6ff99b2Copy full SHA for 6ff99b2
docs/components/xiao/playground/components/doc.vue
@@ -21,7 +21,7 @@
21
:class="{ hidden: store.tab.aside !== 'docs' }"
22
:src="store.doc"
23
/>
24
- <article class="relative w-full h-full overflow-x-hidden overflow-y-auto">
+ <article class="relative w-full h-full overflow-x-hidden overflow-y-auto rounded-xl">
25
<Ray
26
class="top-0 h-42 opacity-40 dark:opacity-100 pointer-events-none"
27
docs/tutorial/patterns/macro/index.md
@@ -115,7 +115,7 @@ new Elysia()
115
if(!isFibonacci(body)) return status(418)
116
}
117
})
118
- .post('/fibo', ({ body }) => body, {
+ .post('/', ({ body }) => body, {
119
isFibonacci: true
120
121
.listen(3000)
0 commit comments