20lives / tailwindcss-rtl

Enabling bidirectional support on tailwindcss framework
MIT License
351 stars 34 forks source link

divide-s doesn't support screen prefixes #31

Open bserem opened 3 years ago

bserem commented 3 years ago

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;
  }
}