Openstatus www.openstatus.dev

fix: widget class (#835)

authored by

Maximilian Kaske and committed by
GitHub
4675021b e6cdd7d1

+4 -2
+4 -2
packages/react/src/widget.tsx
··· 45 45 <span className="relative flex h-2 w-2"> 46 46 {status === "operational" ? ( 47 47 <span 48 - className={`absolute inline-flex h-full w-full animate-ping rounded-full${color}opacity-75 duration-1000`} 48 + className={`absolute inline-flex h-full w-full animate-ping rounded-full ${color} opacity-75 duration-1000`} 49 49 /> 50 50 ) : null} 51 - <span className={`relative inline-flex h-2 w-2 rounded-full${color}`} /> 51 + <span 52 + className={`relative inline-flex h-2 w-2 rounded-full ${color}`} 53 + /> 52 54 </span> 53 55 </a> 54 56 );