Adam Wathan

Results 218 comments of Adam Wathan

Can you create a GitHub repo that reproduces? It works as expected using the default config that we use to generate the CDN builds: https://tailwind.run/KAkBDB

The problem is you are using string concatenation to dynamically create a class name. Purgecss doesn't actually run your code so it doesn't know to keep that class. You should...

The full class name `hover:border-a4a-equipment-red` never appears in your source code so Purgecss doesn't know to keep it.

I think for your situation I would add a `hoverBottomBorderColor` key in your categories file: ``` return [ 'categories' => [ [ 'id' => 1, 'name' => 'Equipment', 'textColor' =>...

For actual projects (not libraries), the difference between a regular dependency vs. dev dependency just isn't meaningful in my experience since every single project has some build step, making literally...

Hey thanks! I just added an example of my own Next setup (just PostCSS, no Sass) but I wouldn't mind having a Sass example as well. Here's the example I...

Tailwind doesn't include transform classes so you either need to write them yourself (we have docs on how to do this: https://next.tailwindcss.com/docs/adding-new-utilities) or use an existing plugin.

Just really difficult to implement and haven't had the time to dedicate the 40-80 hours to it that it would take to really do properly.

Some discussion about it here, although some of the challenging details still only live in my head: https://github.com/tailwindcss/tailwindcss/issues/313#issuecomment-423747303

That's really weird, looks like it thinks that comma in the config file is a syntax error? Can you double check you are on a recent version of Node? We...