You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 27, 2021. It is now read-only.
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:
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
The text was updated successfully, but these errors were encountered: