Pulsating effect mientras carga elemento

This commit is contained in:
Daniel Cortes
2020-06-04 07:38:47 -04:00
parent 0950c86a27
commit 91e253aba7
3 changed files with 32 additions and 9 deletions

View File

@@ -222,3 +222,22 @@ ul.tabs li.tab.selected {
.full-width {
width: 100%;
}
.pulsating {
animation: pulsating 8s infinite;
@keyframes pulsating {
0% {
background-color: var(--white);
}
50% {
background-color: var(--gray-1);
}
100% {
background-color: var(--white);
}
}
}