Joaquín Sánchez

Results 1398 comments of Joaquín Sánchez

external link icons shouldn't be changed with `transform: rotate(-90deg)`? ![imagen](https://github.com/user-attachments/assets/58f84612-cd80-4f07-b07a-ce052ffb6ae8) This should be the result: ![imagen](https://github.com/user-attachments/assets/e4d98f9b-59bb-49d1-ad1a-05c0efa93ba4)

The only problem I'm having is about importing virtual modules in the remix pwa components, cannot load virtual modules on SSR (`npx create-remix@latest` + adding PWA stuff). ![image](https://github.com/user-attachments/assets/25ae8aa0-3c48-4603-9176-c7c729e4ae9d)

You can copy/paste both components to your app folder, importing them from local works: https://discord.com/channels/770287896669978684/1239208602024280076

Just copy the components here https://github.com/vite-pwa/remix/tree/main/src/components to your src/components folder then use them in your root.tsx (copy only the one you're using, I mean, if not using PWA assets on...

If still not working, provide a minimal reproduction :pray:

Try adding also vite-plugin-pwa and workbox-window as dev dependencies. Check scafolding section in the docs: select vue + nuxt in the prompts

https://nuxt.vuetifyjs.com/guide/sass-customization.html#overriding-sass-variables

iirc, you must disable `vuetify/styles` if you want to override component variables, otherwise you need `vuetify/styles`: `disableVuetifyStyles` just prevents the module to add the `vuetify/styles` to nuxt css entry

I need to review the custom plugin, maybe some change at Nuxt. I will try using `@unvuetify/styles-plugin`... /cc @TechAkayy

The styles are missing only with dev server, if you run build + preview the styles are fine: add `vuetifyOptions: { labsComponents: true }` in your nuxt config file, a...