CapitaineToinon
CapitaineToinon
The unwanted scroll seems to be caused by bad css on the daisyui doc and can be fixed. However the arrow/page up keys not working is caused by [sveltekit setting...
Ah yeah fair enough about `scroll-padding-top`. However I don't believe the root cause is javascript related. As far as I understand, the input is considered outside of the view because...
I gave a try to Nuxt 3 and it is indeed very unstable and undocumented, as expected from a beta release. We could try Nuxt Bridge first and we already...
We shouldn't need any of this, as long as the `input` is the top element of the template and if `inheritAttrs` is set to true (already true by default). Same...
Would love some quick tldr on how to get it working with vite! I'm trying to use inertia for the first time and it took me about an hour to...
Looking at the twind repo, it seem like [it doesn't support importing tailwind plugins directly](https://github.com/tw-in-js/twind/issues/32#issuecomment-1118264227).
Thanks to [discussions/601](https://github.com/tailwindlabs/headlessui/discussions/601#discussioncomment-1959631), I got it working like this: ```tsx import { ComponentType } from 'react' import { Dialog as HeadlessDialog } from '@headlessui/react' type ExtractProps = T extends ComponentType...
Up. I really don't understand why this lib has support for zod if it's to get no types out of validation out of the box. Are the above workarounds the...
> @MaazDev What if we have multiple promises to v-await and we want to show them with v-then but with a custom order ? The content if each v-await, v-then...
> If the `v-await` is at the top **nothing is displayed** until you get the data. or you duplicate the layout Yes but that would be the developer's fault, not...