Add flip horizontal/vertical to the editing interface
Flip horizontal and vertical are very useful when arranging objects (especially duplicated ones) on a slide and easy to achieve using a simple CSS transform (until there’s an interface for it, you can use custom CSS to implement it):
Flip horizontal:
.my-object {
transform: scale(-1, 1) !important;
}
Flip vertical:
.my-object {
transform: scale(1, -1) !important;
}
6
votes
Aral Balkan
shared this idea