Skip to content

Commit 47d4bb7

Browse files
committed
hot fix controls
1 parent c26ac8f commit 47d4bb7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

components/home/FloatingCallControl.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,30 +90,30 @@ export function FloatingCallControl({ visibleChannel, token }: { visibleChannel?
9090
</TrackToggle>
9191
)}
9292
{connectionState !== ConnectionState.Connected ? (
93-
<div className={`${mediaStyle.appear}`}>
93+
<>
9494
{' '}
9595
{userSettings ? (
9696
<button
9797
onClick={() => settingsRef(false)}
98-
className={`w-7 h-7 rounded-lg p-1 bg-grey-900 flex items-center justify-center ${mediaStyle.appear}`}
98+
className={'w-7 h-7 rounded-lg p-1 bg-grey-900 hover:bg-grey-800 flex items-center justify-center'}
9999
>
100100
<MicrophoneIcon width={6} height={6}/>
101101
</button>
102102
) : (
103103
<button
104104
onClick={() => settingsRef(true)}
105-
className={`w-7 h-7 rounded-lg p-1 bg-grey-900 flex items-center justify-center ${mediaStyle.appear}`}
105+
className={'w-7 h-7 rounded-lg p-1 bg-grey-900 hover:bg-grey-800 flex items-center justify-center'}
106106
>
107107
<MicrophoneOff width={6} height={6} />
108108
</button>
109109
)}
110-
</div>
110+
</>
111111
) : (
112112
<TrackToggle
113113
showIcon={false}
114114
source={Track.Source.Microphone}
115115
onClick={() => settingsRef(false)}
116-
className={`w-7 h-7 rounded-lg p-1 bg-grey-900 flex items-center justify-center ${mediaStyle.appear}`}
116+
className='w-7 h-7 rounded-lg p-1 bg-grey-900 hover:bg-grey-800 flex items-center justify-center'
117117
>
118118
{currentParticipant.isMicrophoneEnabled ? (
119119
<MicrophoneIcon width={6} height={6}/>

0 commit comments

Comments
 (0)