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