DEV Community

Discussion on: [Update] Using Svelte with Tailwindcss - A better approach

Collapse
 
mustofa profile image
Habib Mustofa

Ahh, simply.
This is great! Thank you!

Note:
If anyone facing css linting warning in @tailwind keyword, just add type="text/postcss".

<style type="text/postcss" global>
  @tailwind base;
  @tailwind components;
  @tailwind utilities;
</style>