aholachek / animate-css-grid

Painless transitions for CSS Grid
MIT License
1.38k stars 70 forks source link

Doesn't work with display: contents #64

Open zolomatok opened 3 years ago

zolomatok commented 3 years ago

Amazing lib, but given a simple layout like...

.grid
       .item
            .wrap
                p helo
                p belo
        .item
            .wrap
                p helo
                p belo

...and CSS like...

.grid {
   display: grid
}

.item {
  display: contents
}

... the animations will no longer work. They do, if the .items don't have display: contents on the them.

Would it be possible to make it work with display: contents? 🥺