Skip to content

Commit

Permalink
feat: easter egg
Browse files Browse the repository at this point in the history
  • Loading branch information
nandenjin committed Oct 17, 2024
1 parent 3a937ba commit 05905b3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/components/ControlUI.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ const importFromClipboard = async () => {
gap: 10px;
}
.icon:hover {
animation: sawagani 0.3s ease-in-out 0s alternate infinite;
}
@keyframes sawagani {
0% {
transform: rotate(10deg);
}
100% {
transform: rotate(-10deg);
}
}
@media print {
.control-ui {
display: none;
Expand Down

0 comments on commit 05905b3

Please sign in to comment.