bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/quick-poll-dropdown/styles.js
2023-07-25 15:05:00 -03:00

27 lines
687 B
JavaScript

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
import { borderSizeLarge } from '/imports/ui/stylesheets/styled-components/general';
import { headingsFontWeight } from '/imports/ui/stylesheets/styled-components/typography';
const QuickPollButton = styled(Button)`
margin-left: .5rem;
padding: .1rem;
box-shadow: none !important;
background-clip: unset !important;
& > span:first-child {
border-radius: ${borderSizeLarge};
font-size: small;
font-weight: ${headingsFontWeight};
opacity: 1;
}
& > span:first-child:hover {
opacity: 1 !important;
}
`;
export default {
QuickPollButton,
};