ebike-plus-ui/src/style/global-transition.scss
2024-04-06 18:45:01 +08:00

10 lines
164 B
SCSS

/* global css transition */
// 旋转180deg
.rotate-180 {
transform: rotate(0deg);
transition: transform 0.2s;
&:hover {
transform: rotate(180deg);
}
}