main
css 13 lines 191 Bytes
Raw
1 .root {
2 border-radius: 0.25rem;
3 animation: pulse 2s infinite;
4 }
5
6 @keyframes pulse {
7 0%, 100% {
8 background-color: none;
9 }
10 50% {
11 background-color: var(--color-dimmest);
12 }
13 }