UNPKG

communication-react-19

Version:

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

69 lines 1.34 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { _pxToRem } from "../../../../acs-ui-common/src"; /** * @internal */ export const mainTextStyles = { root: { fontWeight: 600, fontSize: _pxToRem(20), lineHeight: _pxToRem(28), margin: 'auto', textAlign: 'center', padding: '0.5rem' } }; /** * @internal */ export const secondaryTextStyles = { root: { margin: 'auto', fontWeight: 400, textAlign: 'center' } }; /** * @internal */ export const testContainerStyles = { root: { margin: 'auto' } }; /** * @internal */ export const linkTextStyles = { root: { margin: 'auto', fontWeight: 600, textAlign: 'center' } }; /** * @internal */ export const containerStyles = { root: { maxWidth: _pxToRem(375), padding: '2rem' } }; /** * @internal */ export const continueAnywayButtonStyles = (theme) => { return { root: { backgroundColor: '#C4314B', borderColor: theme.palette.neutralLight, color: theme.palette.white, padding: '1rem', // copy value previously set in FluentUI height: '32px' } }; }; //# sourceMappingURL=UnsupportedEnvironment.styles.js.map