This commit is contained in:
A1300399510
2023-08-09 15:42:35 +08:00
parent 520b970905
commit bb4e5c0bf9

View File

@@ -537,6 +537,24 @@ img {
height: 100%; height: 100%;
cursor: pointer; cursor: pointer;
&:hover {
.icon {
// transform: rotate(45deg);
animation: spin 1s forwards;
}
}
@keyframes spin {
0% {
transform: rotate(360deg);
}
100% {
transform: rotate(0deg);
}
}
.icon { .icon {
width: 16px; width: 16px;
height: 16px; height: 16px;
@@ -586,6 +604,10 @@ img {
cursor: pointer; cursor: pointer;
margin-left: 10px; margin-left: 10px;
&:hover {
color: #000000;
}
&.go-up { &.go-up {
border: none; border: none;
color: #fff; color: #fff;