--- 'astro': major --- Remove backwards-compatible kebab-case transform for camelCase CSS variable names passed to the `style` attribute. If you were relying on the kebab-case transform in your styles, make sure to use the camelCase version to prevent missing styles. For example: ```astro --- const myValue = "red" ---
``` ```diff ```