bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/screenshare/styles.js
2022-02-14 20:20:50 +00:00

42 lines
1.1 KiB
JavaScript

import styled from 'styled-components';
import Modal from '/imports/ui/components/modal/simple/component';
import Button from '/imports/ui/components/common/button/component';
import { colorGrayDark, colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
import {
jumboPaddingY,
minModalHeight,
headingsFontWeight,
mdPaddingX,
} from '/imports/ui/stylesheets/styled-components/general';
import { fontSizeLarge } from '/imports/ui/stylesheets/styled-components/typography';
const ScreenShareModal = styled(Modal)`
padding: ${jumboPaddingY};
min-height: ${minModalHeight};
text-align: center;
`;
const Title = styled.h3`
font-weight: ${headingsFontWeight};
font-size: ${fontSizeLarge};
color: ${colorGrayDark};
white-space: normal;
padding-bottom: ${mdPaddingX};
`;
const ScreenShareButton = styled(Button)`
${({ ghost }) => ghost && `
span {
box-shadow: none;
background-color: transparent !important;
border-color: ${colorWhite} !important;
}
`}
`;
export default {
ScreenShareModal,
Title,
ScreenShareButton,
};