Add blue border to status badge to verify deployment

Testing if changes are being picked up correctly.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
michael 2026-01-27 15:15:25 -06:00
parent 8ba0f01e20
commit ed040efac0

View file

@ -75,10 +75,8 @@ const RagStatusBadge: React.FC<{ status: RagStatus }> = ({ status }) => {
}
return (
<span style={{ backgroundColor: bgColor, borderRadius: '9999px', display: 'inline-table', height: '22px', minWidth: '50px', paddingLeft: '12px', paddingRight: '12px' }}>
<span style={{ display: 'table-cell', verticalAlign: 'middle', textAlign: 'center', color: textColor, fontSize: '12px', fontWeight: 'bold' }}>
{status}
</span>
<span style={{ backgroundColor: bgColor, borderRadius: '9999px', display: 'inline-block', minWidth: '50px', paddingLeft: '12px', paddingRight: '12px', paddingTop: '4px', paddingBottom: '4px', textAlign: 'center', color: textColor, fontSize: '12px', fontWeight: 'bold', border: '2px solid blue' }}>
{status}
</span>
);
};