 Seems the `<sm:` prefix is not recognized by VS Code. Workaround: As soon as I define it in `windi.config.mjs` it works: ``` import { defineConfig } from 'windicss/helpers' export default defineConfig({ theme: { screens: { xs: '510px', sm: '640px', }, } }) ```