JSFiddle - React, Tailwind, and code Playground

by cathead

HTML

<div></div>

SCSS

div {
    animation: animatedBackground 2s linear infinite;
    background: url(http://marcel.sandbox.imarc.net/tile__wave.png) repeat-x center / auto 15px;
    height: 30px;
    width: 300px;
}

@keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 100% 0; }
}