bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/plugins-engine/styles.ts
2023-09-13 14:34:48 -03:00

15 lines
212 B
TypeScript

import styled from 'styled-components';
const PluginsEngine = styled.div`
position: 'absolute',
top: 0,
left: 0,
width: '100vw',
height: '100vh',
zIndex: -1,
`;
export default {
PluginsEngine,
};