mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 21:37:46 +00:00
20 lines
425 B
TypeScript
20 lines
425 B
TypeScript
import { ColorPalette } from '../../../styles/components/styles/ColorPalette';
|
|
|
|
export default {
|
|
|
|
/**
|
|
* Base indicator style.
|
|
*/
|
|
indicator: {
|
|
backgroundColor: ColorPalette.transparent,
|
|
padding: 2,
|
|
color: ColorPalette.white,
|
|
fontSize: 16,
|
|
textShadowColor: ColorPalette.black,
|
|
textShadowOffset: {
|
|
height: -1,
|
|
width: 0
|
|
}
|
|
}
|
|
};
|