bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/control-header/right/styles.js

19 lines
416 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
import { fontSizeBase } from '/imports/ui/stylesheets/styled-components/typography';
const CloseButton = styled(Button)`
span:first-of-type {
padding: 0;
margin: 0;
& > i,
& > i::before {
width: auto;
font-size: ${fontSizeBase};
}
}
`;
export default { CloseButton };