emsitkowski
change background colour on a ULandingCard
Hi @Dave Herring, you have to move bg-red class to ULandingCard component. Or you can globally change card background in app.config.ts like that:
export default defineAppConfig({
ui: {
landing: {
card: {
wrapper: 'bg-red'
}
}
}
})
4 replies
Nuxt 3 Charts
Great question. I haven't found yet a chart library, that I actually liked. I've used Chart.js few times, but was having hard time adjusting the styles to match a modern design, like the one you provided.
Anyone have experience with more modern charts?
8 replies
Client side Auth
Hi @Vincent, I can agree that Supabase is a nice and fast way to provide user auth in your app. I've used it few times in my projects 🙂 You can also check out an alternative: https://appwrite.io/
6 replies
TailwindCSS Not Working
Hey @dondycles, not sure why the Tailwind module doesn't work, but you can check out official Tailwind docs for Nuxt. I always add it to my projects like they say, and it works perfectly fine: https://tailwindcss.com/docs/guides/nuxtjs
3 replies