2023-05-15 08:51:32 +08:00
|
|
|
.generateLogo {
|
|
|
|
|
animation: 2s rotate linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes rotate {
|
|
|
|
|
from {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-12 17:27:50 +08:00
|
|
|
|
|
|
|
|
.codeBrowserIcon {
|
|
|
|
|
@apply w-4 h-4 bg-center bg-no-repeat;
|
|
|
|
|
background-image: url(./assets/code-browser.svg);
|
|
|
|
|
}
|
2023-08-16 10:31:08 +08:00
|
|
|
|
|
|
|
|
.refreshIcon {
|
|
|
|
|
background-image: url(./assets/refresh.svg);
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.refreshIcon:hover {
|
|
|
|
|
background-image: url(./assets/refresh-hover.svg);
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|