ebike-plus-ui/src/style/global-transition.scss

10 lines
164 B
SCSS
Raw Normal View History

2024-04-06 18:45:01 +08:00
/* global css transition */
// 旋转180deg
.rotate-180 {
transform: rotate(0deg);
transition: transform 0.2s;
&:hover {
transform: rotate(180deg);
}
}