diff --git a/templates/nuxt/unocss-vuetify/app/assets/styles/layers.css b/templates/nuxt/unocss-vuetify/app/assets/styles/layers.css index a5a4830..49a50c8 100644 --- a/templates/nuxt/unocss-vuetify/app/assets/styles/layers.css +++ b/templates/nuxt/unocss-vuetify/app/assets/styles/layers.css @@ -1,5 +1,8 @@ @layer vuetify-core; @layer vuetify-components; + +@layer uno-icons; + @layer vuetify-overrides; @layer vuetify-utilities; diff --git a/templates/nuxt/unocss-wind4/app/assets/styles/layers.css b/templates/nuxt/unocss-wind4/app/assets/styles/layers.css index 0abd1be..576340e 100644 --- a/templates/nuxt/unocss-wind4/app/assets/styles/layers.css +++ b/templates/nuxt/unocss-wind4/app/assets/styles/layers.css @@ -3,6 +3,9 @@ @layer vuetify-core; @layer vuetify-components; + +@layer uno-icons; + @layer vuetify-overrides; @layer vuetify-utilities; diff --git a/templates/vue/unocss-vuetify/src/styles/layers.css b/templates/vue/unocss-vuetify/src/styles/layers.css index 7ab0b2b..49a50c8 100644 --- a/templates/vue/unocss-vuetify/src/styles/layers.css +++ b/templates/vue/unocss-vuetify/src/styles/layers.css @@ -1,6 +1,13 @@ @layer vuetify-core; @layer vuetify-components; + +@layer uno-icons; + @layer vuetify-overrides; @layer vuetify-utilities; -@layer uno; + +@layer uno-typography; +@layer uno-utilities; +@layer uno-default; + @layer vuetify-final; diff --git a/templates/vue/unocss-vuetify/uno.config.ts b/templates/vue/unocss-vuetify/uno.config.ts index 31110ed..3e3e63d 100644 --- a/templates/vue/unocss-vuetify/uno.config.ts +++ b/templates/vue/unocss-vuetify/uno.config.ts @@ -21,6 +21,6 @@ export default defineConfig({ ...['', '-0', '-sm', '-lg', '-xl', '-pill', '-circle', '-shaped'].map(suffix => `rounded${suffix}`), ], outputToCssLayers: { - cssLayerName: (layer) => layer === 'properties' ? null : `uno.${layer}`, + cssLayerName: (layer) => layer === 'properties' ? null : `uno-${layer}`, }, }) diff --git a/templates/vue/unocss-wind4/src/styles/layers.css b/templates/vue/unocss-wind4/src/styles/layers.css index 0abd1be..576340e 100644 --- a/templates/vue/unocss-wind4/src/styles/layers.css +++ b/templates/vue/unocss-wind4/src/styles/layers.css @@ -3,6 +3,9 @@ @layer vuetify-core; @layer vuetify-components; + +@layer uno-icons; + @layer vuetify-overrides; @layer vuetify-utilities;