Font awesome rotation

Hi !
Is it possible to flip an icon from “font awesome”? It’s for a push button.

From this

to this ?

Thank you.

You can do that using the widget’s css property to apply transforms to the icon element. However, since font awesome comes with some built-in classes to rotate and animate icons, I’m adding a simple way to use them (coming in next alpha release):

  • ^signal.flip-horizontal will produce the flipped icon you posted
  • ^spinner.spin will produce a spinning spinner
2 Likes

Merci beaucoup!
I tried what you suggested but it seems to not working. What am I doing wrong?


I can wait until the next update if that is a problem.
Thank again Jean-Emmanuel.

This will only work in v1. In v0 you’ll need to do it manually using css, something like:

i {
  transform: scaleX(-1)
}
1 Like

Awesome, its working!!!
I will take a look between the version 0 and 1.
Thanks, you rock!!!