bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/chat-graphql/chat-popup/styles.ts

15 lines
342 B
TypeScript

import styled from 'styled-components';
import { ScrollboxVertical } from '/imports/ui/stylesheets/styled-components/scrollable';
export const PopupContainer = styled.div`
position: sticky;
top: 0;
max-height: 80%;
z-index: 3;
background-color: white;
`;
export const PopupContents = styled(ScrollboxVertical)`
height: 100%;
`;