`border` class doesn't invert color
milan-gm opened this issue · 2 comments
milan-gm commented
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.
RaminGe commented
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;
}
macmillen commented
i guess that works for now, but it would be cool if nightwind would do that for me