Align Reorder button of the left

Hello,

I need to put reorder button in my list on the left. What is the best way to do that?

Here is my code:

<ion-content>
        <ion-list show-reorder="data.showReorder = true">
            <ion-item ng-repeat="topic in topics" href="#/editTopic/{{topic.id}}">
                {{topic.name}}
                <ion-reorder-button class="ion-ios7-drag"
                                    on-reorder="moveItem(topic, $fromIndex, $toIndex)">
                </ion-reorder>
            </ion-item>
        </ion-list>
</ion-content>

Some css can get this done.

Please not that all those importants are for dealing with codpen

That works! Thank you, Mike!