Updating status in panel to not default to uppercase (#63)

This commit is contained in:
mattherzog
2024-05-31 11:34:42 -05:00
committed by GitHub
parent c29e771771
commit 21f068691f
2 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ export const NameValueRow: React.FC<NameValueRowProps> = ({
return (
<div className="flex flex-row w-full items-baseline text-sm">
<div className="grow shrink-0 text-gray-500">{name}</div>
<div className={`text-xs uppercase shrink text-${valueColor} text-right`}>
<div className={`text-xs shrink text-${valueColor} text-right`}>
{value}
</div>
</div>