master-co / css

The CSS Language and Framework
https://css.master.co
MIT License
1.75k stars 42 forks source link

✨ `translate`, `scale:`, `rotate:` shorthands for `transform:` #321

Open 1aron opened 6 months ago

1aron commented 6 months ago

Description

Translate X

transform:translateX(20)
translateX(20)
+ translate:20

Translate Y

transform:translateY(20)
translateY(20)
+ translate:0|20

Translate X Y

transform:translate(20,20)
translate(20,20)
+ translate:20|20

...

neneodonkor commented 1 month ago

Perhaps, a shorter version could be supported as well: tr:20 or trans:20. 😁