5 lines
153 B
CSS
5 lines
153 B
CSS
|
@keyframes background-slide {
|
||
|
0% { background-position: 0 0; }
|
||
|
100% { background-position: var(--background-width) var(--background-height); }
|
||
|
}
|