bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-provider/video-button/styles.js
2022-02-21 17:40:00 -03:00

23 lines
514 B
JavaScript

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
const VideoButton = styled(Button)`
${({ ghost }) => ghost && `
& > span {
box-shadow: none;
background-color: transparent !important;
border-color: ${colorWhite} !important;
}
`}
`;
const OffsetBottom = styled.div`
position: relative;
`;
export default {
VideoButton,
OffsetBottom,
};