implemented loaders

This commit is contained in:
Fran Jurmanović
2021-06-05 13:13:56 +02:00
parent 4ed0b75b09
commit 8ffcbe283e
9 changed files with 131 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
.loader {
position: absolute;
top: 0;
left: 0;
height: 5px;
width: 0;
background-color: $blue-09;
z-index: 2000;
&.--loading {
animation: animateBar 5s linear;
}
&.--removing {
width: 100%;
}
}
.progress .progress-bar {
}
@keyframes animateBar {
0% {
width: 0;
}
100% {
width: 100%;
}
}

View File

@@ -0,0 +1 @@
@import "./app-loader.scss";

View File

@@ -4,3 +4,4 @@
@import "./sidebar/index.scss";
@import "./modal/index.scss";
@import "./table/index.scss";
@import "./app-loader/index.scss";