Joaquín Sánchez
Joaquín Sánchez
external link icons shouldn't be changed with `transform: rotate(-90deg)`?  This should be the result: 
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). 
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...