chore(docs): add spinner to stop btn

This commit is contained in:
braks
2024-02-08 22:46:38 +01:00
parent ce7333fef6
commit 0c441b35df
2 changed files with 35 additions and 23 deletions
-18
View File
@@ -104,22 +104,4 @@ const processLabel = toRef(() => {
background: transparent;
font-size: 12px;
}
.spinner {
border: 3px solid #f3f3f3;
border-top: 3px solid #2563eb;
border-radius: 50%;
width: 10px;
height: 10px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>