Adam Wathan

Results 173 comments of Adam Wathan

Hey! I think this is a pretty interesting idea but I would want to spend some time working with our design team to make sure we are happy with the...

I think your best option is to use absolute paths for all of your URLs instead of relative paths, if I remember what the feature does correctly. Can you share...

Got it, so what you want to do is write your image URLs relative the your web root, not relative to the Sass file you're in. You _probably_ want this:...

Personally I just keep everything in `public/img` or similar from the beginning, so I don't need to copy anything over. It would be nice if we could use `processCssUrls` but...

Best solution I can figure is to add `flex-auto` to each item so they all grow/shrink as needed to fill the available space: https://jsfiddle.net/adamwathan/mvhza60g/

Might be a retina display-only problem, it looks like a half pixel to me.

Hmm should work, are you sure your CSS is being compiled using your Tailwind config? Here's a working example: https://tailwind.run/DFcetn

Hey thanks for raising this! We're going to add a sensible default `z-*` utility to these panels so it works a bit better out of the box, even if you...

You can implement that in your own app for sure 👍 For Tailwind core that's too complex/opinionated, it's mean to be just low level primitives for building custom user interfaces,...

Apply the regular utility in the pseudo selector, we talk about this in the docs: https://tailwindcss.com/docs/functions-and-directives#apply On Sat, Jun 9, 2018 at 1:11 PM Mehran Rasulian wrote: > @olimorris Thanks...