at the end of the day, it was inevitable

This commit is contained in:
Mo Elzubeir
2022-12-09 08:36:26 -06:00
commit 1218570914
1768 changed files with 887087 additions and 0 deletions
@@ -0,0 +1,33 @@
@keyframes #{$rt-namespace}__trackProgress {
0%{
width: 96%;
}
100%{
width: 0;
}
}
.#{$rt-namespace}__progress-bar {
position: absolute;
bottom: 9%;
left: 2%;
width: 0;
height: 5px;
z-index: $rt-z-index;
animation: #{$rt-namespace}__trackProgress linear 1;
background-color: rgba(255,255,255,.3);
@include border-radius($border-radius);
&--rtl {
right: 0;
left: initial;
}
&--default{
background: $rt-color-progress-default;
}
&--info{}
&--success{}
&--warning{}
&--error{}
}