text color

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo K
2025-09-12 13:40:00 +02:00
parent fb01c53f98
commit c1e8cdc4e0
2 changed files with 1 additions and 8 deletions

View File

@@ -423,9 +423,7 @@ export const InCallView: FC<InCallViewProps> = ({
size={AvatarSize.XL} size={AvatarSize.XL}
/> />
</div> </div>
<Text size="md" className={waitingStyles.label}> <Text size="md">{text}</Text>
{text}
</Text>
</div> </div>
</div> </div>
); );

View File

@@ -44,8 +44,3 @@
opacity: 0; opacity: 0;
} }
} }
.label {
color: white;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}