#65 - Dashboard implementation

This commit is contained in:
Elio Struyf
2021-08-24 21:01:58 +02:00
parent ce8a343ffd
commit 722c0d6888
44 changed files with 745 additions and 58 deletions
+19
View File
@@ -0,0 +1,19 @@
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
.loader {
border-top-color: var(--vscode-activityBar-activeBorder);;
animation: spinner 1.5s linear infinite;
}
@-webkit-keyframes spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}