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