💄 Style: fix language and theme switch cursor style (#193)

This commit is contained in:
Cell
2022-09-17 22:34:27 +08:00
parent bce815db20
commit b6433d197a
+11 -5
View File
@@ -80,6 +80,11 @@ header {
}
}
}
&.language,
&.theme-switch {
cursor: pointer;
}
}
}
@@ -162,12 +167,13 @@ header {
}
}
.theme-switch i {
cursor: pointer;
@include transform(rotate(225deg));
@include transition(transform 0.4s ease);
.theme-switch {
i {
@include transform(rotate(225deg));
@include transition(transform 0.4s ease);
}
&:hover {
&:hover i {
@include transform(rotate(45deg));
}
}