You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/components/loader/loader.page.styl

41 lines
657 B
Stylus

.page-loader
position: absolute
top: 0
left: 0
right: 0
bottom: 0
display: flex
align-items: center
justify-content: center
z-index: 9999
.loader-container
position: absolute
left: 0
width: 100%
top: 0
height: 100%
.loader
text-indent: -9999em
border: rem(5px) solid rgba($primary-color, .2)
border-left: rem(5px) solid $primary-color
animation: load8 1.1s infinite linear
border-radius: 50%
width: rem(50px)
height: rem(50px)
margin-left: rem(-25px)
margin-top: rem(-25px)
left: 50%
top: 50%
position: absolute
@keyframes load8
0%
transform: rotate(0deg)
100%
transform: rotate(360deg)