tailwindcss-rtl icon indicating copy to clipboard operation
tailwindcss-rtl copied to clipboard

divide-s doesn't support screen prefixes

Open bserem opened this issue 3 years ago • 0 comments

It seems that divide-s doesn't work if prefixed with a screen, like md:divide-s.

At the moment I had to use a custom solution:

.rtl-md-divide > * + *{
  @screen md {
    @apply border-s;
  }
}

bserem avatar Jun 25 '21 11:06 bserem