diff --git a/src/frontend/src/features/rooms/livekit/components/controls/Participants/LowerAllHandsButton.tsx b/src/frontend/src/features/rooms/livekit/components/controls/Participants/LowerAllHandsButton.tsx index 79a4ba1a..640a1fed 100644 --- a/src/frontend/src/features/rooms/livekit/components/controls/Participants/LowerAllHandsButton.tsx +++ b/src/frontend/src/features/rooms/livekit/components/controls/Participants/LowerAllHandsButton.tsx @@ -17,7 +17,7 @@ export const LowerAllHandsButton = ({ aria-label={t('participants.lowerParticipantsHand')} size="sm" fullWidth - invisible + variant="text" onPress={() => lowerHandParticipants(participants)} > {t('participants.lowerParticipantsHand')} diff --git a/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx b/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx index 0d9471fa..9d815f41 100644 --- a/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx +++ b/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx @@ -39,10 +39,10 @@ const MuteAlertDialog = ({

{t('participants.muteParticipantAlert.description', { name })}

- - diff --git a/src/frontend/src/primitives/buttonRecipe.ts b/src/frontend/src/primitives/buttonRecipe.ts index 12ff72ef..628d8206 100644 --- a/src/frontend/src/primitives/buttonRecipe.ts +++ b/src/frontend/src/primitives/buttonRecipe.ts @@ -73,6 +73,12 @@ export const buttonRecipe = cva({ backgroundColor: 'success.subtle!', }, }, + text: { + color: 'primary', + '&[data-hovered]': { + background: 'gray.100 !important', + }, + }, danger: { colorPalette: 'danger', borderColor: 'danger.600',