Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: color format (#875)

* fix: color format

* fix: classname

authored by

Maximilian Kaske and committed by
GitHub
099e0439 9fb258ae

+4 -1
+4 -1
packages/react/src/widget.tsx
··· 49 49 className={`absolute inline-flex h-full w-full animate-ping rounded-full ${color} opacity-75 duration-1000`} 50 50 /> 51 51 ) : null} 52 - <span className={`relative inline-flex h-2 w-2 rounded-full${color}`} /> 52 + <span 53 + // biome-ignore lint/nursery/useSortedClasses: <explanation> 54 + className={`relative inline-flex h-2 w-2 rounded-full ${color}`} 55 + /> 53 56 </span> 54 57 </a> 55 58 );