@azure/communication-react
Version:
React library for building modern communication user experiences utilizing Azure Communication Services
37 lines • 737 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @private
*/
export const rootLayoutStyle = {
root: {
position: 'relative',
height: '100%',
width: '100%'
}
};
/**
* @private
*/
export const innerLayoutStyle = {
root: {
position: 'relative',
height: '100%',
width: '100%',
padding: '0.5rem'
}
};
/**
* @private
*/
export const layerHostStyle = {
position: 'absolute',
left: 0,
top: 0,
width: '100%',
height: '100%',
overflow: 'hidden',
// pointer events for layerHost set to none to make descendants interactive
pointerEvents: 'none'
};
//# sourceMappingURL=FloatingLocalVideoLayout.styles.js.map