nightwind icon indicating copy to clipboard operation
nightwind copied to clipboard

`border` class doesn't invert color

Open milan-gm opened this issue 2 years ago • 2 comments

The default border color does not get inverted

<div class="border">...</div>`. 

You need to specify the color additionally like so:

<div class="border border-gray-300">...</div>

It would be great if nightwind would handle that.

milan-gm avatar May 30 '23 08:05 milan-gm

An easy workaround is to add this to your global styles:

.border,
.border-t,
.border-r,
.border-b,
.border-l,
.border-x,
.border-y {
  @apply border-gray-300;
}

RaminGe avatar Jun 14 '23 13:06 RaminGe

i guess that works for now, but it would be cool if nightwind would do that for me

macmillen avatar Jun 15 '23 14:06 macmillen