Renamed /src to /frontend
This commit is contained in:
20
frontend/components/LoadingIndicator/LoadingIndicator.scss
Normal file
20
frontend/components/LoadingIndicator/LoadingIndicator.scss
Normal file
@ -0,0 +1,20 @@
|
||||
.loader {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: #03A9F4;
|
||||
}
|
||||
|
||||
.loading {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 9999;
|
||||
|
||||
background-color: #03A9F4;
|
||||
width: 100%;
|
||||
animation: loading 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes loading {
|
||||
from {margin-left: -100%; z-index:100;}
|
||||
to {margin-left: 100%; }
|
||||
}
|
Reference in New Issue
Block a user