Is it possible to use tailwind and postcss syntax for blazor component isolated css?
I really like Tailwind as a CSS framework specifically its use of postcss and the @apply functionality where you can bundle tailwinds css components into an individual class.
e.g.
.some-button { @apply px-4 py-2 bg-blue-400 text-white}I've been considering using Svelte because it offers both CSS isolation and postcss @apply syntax. However now that Blazor supports isolated CSS I would really like to take it a small step further and be able to write postcss styles from within component CSS.
So... any idea if that's possible yet?