Hi,
I just installed the library using bower (bower install ionic-contrib-tinder-cards --save).
Worked fine except that my cards weren't listed above each others but rather one after the other.
I finally found that the following style was missing respectively not automatically added to my td-card element. I added it manually in my html code but wanted to report it to let know about it, in case that would have been a bug.
So before my manual modification, the card were automatically generated like following:
<td-card ... style="translate3d(0px, 0px, 0px);">
After my modification:
<td-card ... style="z-index:{{items.length-$index}};position:absolute;transform: translate3d(0px, 0px, 0px);"
Thx for the library and best regards
Davo