JSFiddle - React, Tailwind, and code Playground
by Michel Penke
HTML
<div id="deu_unternehmen"></div><script src="https://cdn.correctiv.org/correctivlokal/ausbildungsmarkt/js/correctiv_ausbildungsmarkt_2019.js" type="text/javascript" charset="utf-8"></script>
CSS
.map__item.-hilight {
animation: pulse 1s infinite;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes pulse {
0% {fill: white;}
100% {fill: red; -webkit-transform: scale(1.1); -moz-transform: scale(1.1); transform: scale(1.1);}
}
/* Standard syntax */
@keyframes pulse {
0% {fill: white;}
100% {fill: red; -webkit-transform: scale(1.1); -moz-transform: scale(1.1); transform: scale(1.1);}
}