I am using the SwipeOut component. It is leaving a 1px line revealing the button underneath. for example if the button underneath is red, there is a 1px vertical line on the right side of the SwipeOut. Image is below and HTML is below. Appreciate any help.
<div id=“method-list” class=“list media-list method-list”>
<ul class=“divided-list”>
<div id=“method-template” hidden>
<li id="{sfid}" class=“swipeout spacer1”>
<div class=“swipeout-content”>
<table class=“card-info”>
<tr>
<td rowspan=“2” class=“card-logo”>
<img class=“card-logo” alt="[cc]" src="" />
</td>
<td class=“card-bankname”>{bankname}
<td rowspan=“2” class=“card-default”>{default}
</tr>
<tr>
<td class=“card-details”>{cardnumber} {expiration}
</tr>
</table>
</div>
<div class=“swipeout-actions-right”>
<a href="#" onclick=“setDefaultItem($(this).closest(‘li’).attr(‘id’));” class=“swipeout-action-setdefaultitem”>Set
Default
<a href="#" onclick=“deleteItem($(this).closest(‘li’).attr(‘id’));” class=“swipeout-action-deleteitem”>Delete
</div>
</li>
</div>
</ul>
</div>