You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
341 B
25 lines
341 B
.load__icon { |
|
animation: linear load 2s infinite; |
|
width: 32px; |
|
height: 32px; |
|
} |
|
|
|
.load__icon-wrap { |
|
margin: auto; |
|
} |
|
|
|
.load { |
|
height: calc(100vh - 16px); |
|
width: 100%; |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
@keyframes load { |
|
from { |
|
transform: rotate(0deg) scale(2); |
|
} |
|
to { |
|
transform: rotate(360deg) scale(2); |
|
} |
|
} |