Glyphicon right on button instead of left

0
Hi, Im trying to figure out if there is a way that i can put my glyphicon on the right side of the button. Is there a work around for this? So for example "> submit" needs to be "submit >" Kind Regards, Sonny
asked
1 answers
4

You should be able to float the img of your button/mx-link

Something like the below CSS snippet used to work in a pre-DX release:

.btn > img, .btn > .glyphicon, .mx-link > img {
    float: right;
}
answered