bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/generic-content/styles.ts
Arthurk12 95d823951f feat(generic-component): rename to generic content and add type
Renames the generic component to generic content and adds the first
type, called 'main'. This commit is a preparation to allow generic
content from plugins to have types.
2024-06-10 19:36:45 -03:00

25 lines
457 B
TypeScript

import styled from 'styled-components';
type ContainerProps = {
isResizing: boolean;
isMinimized: boolean;
};
export const Container = styled.div<ContainerProps>`
position: absolute;
pointer-events: inherit;
background: var(--color-black);
z-index: 5;
display: grid;
${({ isResizing }) => isResizing && `
pointer-events: none;
`}
${({ isMinimized }) => isMinimized && `
display: none;
`}
`;
export default {
Container,
};