Ion-card with scroll

Hi,
I have a ion-card with scrollable content in it, it works to scroll from top to bottom but when i let go of the scroll it scrolls back to the top. I want it to stay where i let it go. Hope you did understand what im meaning :slight_smile: Hope someone can help me.
Thx

<div class="card">
  <ion-list>
    <ion-scroll scrollY="true" scrollbar-y="false">
      <ion-item class="item-checkbox checkbox-calm" style="background-color:white" ng-repeat="user in splicedUsers" value="{{user.username}}"
        ng-click="addToChannel(user)">{{user.username}}
        <label class="checkbox">
        <input type="checkbox"/>
      </label>
      </ion-item>
    </ion-scroll>
  </ion-list>
</div>

try this:

<div class="card" overflow-scroll="true">

If it doesnโ€™t work, provide a codepen example.