style.css (474B)
1 .icon-position { 2 background-image: url("location-arrow.svg"); 3 } 4 5 .following .icon-position { 6 background-image: url("location-arrow-active.svg"); 7 } 8 9 .requesting .icon-position { 10 animation-name: spin; 11 animation-duration: 500ms; 12 animation-iteration-count: infinite; 13 animation-timing-function: linear; 14 animation-delay: 100ms; 15 } 16 17 @keyframes spin { 18 from { 19 transform: rotate(0deg); 20 } 21 to { 22 transform: rotate(360deg); 23 } 24 } 25