mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 22:57:47 +00:00
17 lines
418 B
JavaScript
17 lines
418 B
JavaScript
// @flow
|
|
|
|
import { ColorPalette } from '../../base/styles';
|
|
|
|
export const ENABLED_THUMB_COLOR = ColorPalette.blueHighlight;
|
|
export const ENABLED_TRACK_COLOR = ColorPalette.blue;
|
|
export const DISABLED_THUMB_COLOR = ColorPalette.darkGrey;
|
|
|
|
export default {
|
|
roomLockSwitchContainer: {
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
marginTop: 16
|
|
}
|
|
};
|