UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

40 lines 908 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. /** * @private */ export const overlayContainerStyle = { // Ensure some space around the text on a narrow viewport. margin: '1rem' }; /** * @private */ export const titleStyle = (palette, isVideoReady) => { return { fontSize: '1rem', color: isVideoReady ? 'white' : palette.themePrimary, textAlign: 'center' }; }; /** * @private */ export const videoTileStyles = { root: { height: '100%', width: '100%' } }; /** * @private */ export const moreDetailsStyle = (palette, isVideoReady) => ({ fontSize: '0.75rem', color: isVideoReady ? 'white' : palette.themePrimary, textAlign: 'center' }); /** * @private */ export const localCameraSwitcherContainerStyles = { root: { position: 'absolute', top: '0rem', right: '0rem' } }; //# sourceMappingURL=LobbyTile.styles.js.map