Spinners cleanup

This commit is contained in:
Martijn Cuppens 2018-11-17 20:36:11 +01:00 committed by Mark Otto
parent 5042b3c93d
commit 12ae122eda
1 changed files with 3 additions and 9 deletions

View File

@ -7,15 +7,14 @@
}
.spinner-border {
position: relative;
display: inline-block;
width: $spinner-width;
height: $spinner-height;
overflow: hidden;
text-indent: -999em;
vertical-align: text-bottom;
border: $spinner-border-width solid;
border-color: currentColor transparent currentColor currentColor;
border: $spinner-border-width solid currentColor;
border-right-color: transparent;
border-radius: 50%;
animation: spinner-border .75s linear infinite;
}
@ -32,20 +31,14 @@
@keyframes spinner-grow {
0% {
opacity: 0;
transform: scale(0);
}
50% {
opacity: 1;
}
100% {
opacity: 0;
transform: scale(1);
}
}
.spinner-grow {
position: relative;
display: inline-block;
width: $spinner-width;
height: $spinner-height;
@ -54,6 +47,7 @@
vertical-align: text-bottom;
background-color: currentColor;
border-radius: 50%;
opacity: 0;
animation: spinner-grow .75s linear infinite;
}