Skip to content

Commit

Permalink
duplicate css to index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius committed Apr 4, 2024
1 parent fa208aa commit 1058255
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,21 @@
.nativeDropdown-item:focus {
outline: none;
}

/* Spinner component */
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.rotate-500ms {
position: absolute;
inset:0;
animation: rotate 500ms linear infinite;
}
</style>
</head>

Expand Down

0 comments on commit 1058255

Please sign in to comment.