mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 00:56:33 +03:00
Animate loading message
This commit is contained in:
parent
ea6df01bfd
commit
4acae04d96
|
@ -93,6 +93,14 @@ export default class Redoc extends BaseComponent {
|
|||
position: relative;
|
||||
display: block;
|
||||
min-height:350px;
|
||||
animation: 2s move linear infinite;
|
||||
}
|
||||
|
||||
@keyframes move {
|
||||
0% {transform: translateY(0px)}
|
||||
25% {transform: translateY(-10px)}
|
||||
50% {transform: translateY(0px)}
|
||||
75% {transform: translateY(10px)}
|
||||
}
|
||||
|
||||
redoc.loading:before {
|
||||
|
|
Loading…
Reference in New Issue
Block a user