21 lines
283 B
CSS
21 lines
283 B
CSS
@import "tailwindcss";
|
|
|
|
@layer "base" {
|
|
.skeleton {
|
|
border-radius: 0.375rem;
|
|
animation: skeleton-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
background-color: #262626;
|
|
}
|
|
|
|
@keyframes skeleton-pulse {
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
61.8% {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|