feat(nui): Progressbar

This commit is contained in:
Luke
2022-03-15 20:35:02 +01:00
parent 44491b92df
commit ae073881c3
4 changed files with 96 additions and 9 deletions

View File

@@ -26,3 +26,12 @@ code {
stroke-dasharray: 264, 0;
}
}
@keyframes progress-bar {
from {
width: 0%;
}
to {
width: 100%;
}
}