File size: 453 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
@import "@automattic/color-studio/dist/color-variables";
@import "@wordpress/base-styles/colors";
@keyframes site-profiler-skeleton__animation {
0% {
opacity: 0.5;
}
50% {
opacity: 1;
}
100% {
opacity: 0.5;
}
}
.site-profiler-skeleton {
color: $studio-gray-0;
background-color: $studio-gray-5;
width: 100%;
border-radius: 4px;
animation: site-profiler-skeleton__animation 1.6s ease-in-out infinite;
&::after {
content: "";
}
}
|