--- globs: - '**/*.vue' - '**/*.css' --- # Tailwind Conventions ## Class Merging Always use `cn()` for conditional classes: ```vue
``` Never use `:class="[]"` array syntax. ## Theme & Dark Mode Never use the `dark:` variant. Use semantic tokens from `style.css`: ```vue
``` ## Sizing Use Tailwind fraction utilities, not arbitrary percentages: ```vue
``` ## Specificity Never use `!important` or the `!` prefix. If existing `!important` rules interfere, fix those instead.