Skip to content

Commit c26ac8f

Browse files
committed
fixed mic media call control colors to be consistent
1 parent 6fd216c commit c26ac8f

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
@@ -95,16 +95,16 @@ export function FloatingCallControl({ visibleChannel, token }: { visibleChannel?
9595
{userSettings ? (
9696
<button
9797
onClick={() => settingsRef(false)}
98-
className={`w-7 h-7 rounded-lg p-1 bg-frost-600 flex items-center justify-center ${mediaStyle.appear}`}
98+
className={`w-7 h-7 rounded-lg p-1 bg-grey-900 flex items-center justify-center ${mediaStyle.appear}`}
9999
>
100-
<MicrophoneIcon width={5} height={5}/>
100+
<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-frost-600 flex items-center justify-center ${mediaStyle.appear}`}
105+
className={`w-7 h-7 rounded-lg p-1 bg-grey-900 flex items-center justify-center ${mediaStyle.appear}`}
106106
>
107-
<MicrophoneOff width={5} height={5} />
107+
<MicrophoneOff width={6} height={6} />
108108
</button>
109109
)}
110110
</div>
@@ -113,7 +113,7 @@ export function FloatingCallControl({ visibleChannel, token }: { visibleChannel?
113113
showIcon={false}
114114
source={Track.Source.Microphone}
115115
onClick={() => settingsRef(false)}
116-
className={`w-7 h-7 rounded-lg p-1 bg-frost-600 flex items-center justify-center ${mediaStyle.appear}`}
116+
className={`w-7 h-7 rounded-lg p-1 bg-grey-900 flex items-center justify-center ${mediaStyle.appear}`}
117117
>
118118
{currentParticipant.isMicrophoneEnabled ? (
119119
<MicrophoneIcon width={6} height={6}/>

0 commit comments

Comments
 (0)