mirror of
https://github.com/status-im/status-web.git
synced 2025-03-02 21:20:59 +00:00
13 lines
202 B
CSS
13 lines
202 B
CSS
|
/* Animation for skeleton placeholder */
|
||
|
@keyframes gradient {
|
||
|
0% {
|
||
|
background-position: 0% 50%;
|
||
|
}
|
||
|
50% {
|
||
|
background-position: 100% 50%;
|
||
|
}
|
||
|
100% {
|
||
|
background-position: 0% 50%;
|
||
|
}
|
||
|
}
|