iview/src/styles/mixins/transform.less
梁灏 4b05d84ea2 Modify the directory structure
Modify the directory structure
2016-10-28 10:09:07 +08:00

10 lines
No EOL
267 B
Text

.transform(@string) {
-webkit-transform: @string;
-moz-transform: @string;
transform: @string;
}
.transform-origin(@string) {
-webkit-transform-origin: @string;
-moz-transform-origin: @string;
transform-origin: @string;
}