feat(nui): Circle progressbar

This commit is contained in:
Luke
2022-03-15 15:42:54 +01:00
parent 28ea678b92
commit 44491b92df
4 changed files with 100 additions and 0 deletions

View File

@@ -17,3 +17,12 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
@keyframes progress {
0% {
stroke-dasharray: 0, 264;
}
100% {
stroke-dasharray: 264, 0;
}
}