🚸(frontend) increase toast visibility for recording status

Change recording toast color to red following standard recording conventions.
Improves visibility based on user feedback to make recording status more
apparent during active sessions.
This commit is contained in:
lebaudantoine
2025-04-16 18:48:03 +02:00
committed by aleb_the_flash
parent 46d60661f1
commit d92c13d85a
2 changed files with 2 additions and 2 deletions

View File

@@ -107,7 +107,7 @@ export const RecordingStateToast = () => {
left: '10px',
paddingY: '0.25rem',
paddingX: '0.75rem 0.75rem',
backgroundColor: 'primaryDark.100',
backgroundColor: 'danger.700',
borderColor: 'white',
border: '1px solid',
color: 'white',

View File

@@ -31,7 +31,7 @@ export const Spinner = ({
strokeDashoffset={0}
strokeLinecap="round"
className={css({
stroke: variant == 'light' ? 'primary.100' : 'primaryDark.100',
stroke: variant == 'light' ? 'primary.100' : 'transparent',
})}
style={{}}
/>