0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-10 09:08:31 -05:00

🎨 Change position of text center align button

This commit is contained in:
mathieu.brunot 2019-02-22 00:21:19 +01:00
parent 32d08414f3
commit 9369f5e428
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0

View file

@ -139,12 +139,12 @@
[:span {:class (when (= text-align "left") "current")
:on-click #(on-font-align-change % "left")}
i/align-left]
[:span {:class (when (= text-align "right") "current")
:on-click #(on-font-align-change % "right")}
i/align-right]
[:span {:class (when (= text-align "center") "current")
:on-click #(on-font-align-change % "center")}
i/align-center]
[:span {:class (when (= text-align "right") "current")
:on-click #(on-font-align-change % "right")}
i/align-right]
[:span {:class (when (= text-align "justify") "current")
:on-click #(on-font-align-change % "justify")}
i/align-justify]]]])))