tailwindcss-intellisense icon indicating copy to clipboard operation
tailwindcss-intellisense copied to clipboard

CSS conflicts in `@apply` don't handle `.sass` syntax

Open FragsterAt opened this issue 1 year ago • 0 comments

What version of VS Code are you using?

v1.85.1

What version of Tailwind CSS IntelliSense are you using?

v0.10.4

What version of Tailwind CSS are you using?

v3.4.0

What package manager are you using?

npm

What operating system are you using?

Windows

Tailwind config

export default {
  content: [
    "./index.html",
    "./src/**/*.{vue,js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

VS Code settings

// Paste your VS Code settings in JSON format here

Reproduction URL

cssConflictBug

Describe your issue

When using sass in vue sfc components with @apply there is false positive diagostic cssConflict fires in some cases: изображение

изображение

it can be not only comment, but any string with } bracket bug in https://github.com/FragsterAt/cssConflictBug/blob/main/src/App.vue file

FragsterAt avatar Dec 29 '23 12:12 FragsterAt