2021-10-26 03:34:40 +08:00
|
|
|
import styled from 'styled-components';
|
2022-02-15 04:20:50 +08:00
|
|
|
import Button from '/imports/ui/components/common/button/component';
|
2023-07-31 22:24:25 +08:00
|
|
|
import { borderSizeLarge } from '/imports/ui/stylesheets/styled-components/general';
|
2021-10-26 20:37:26 +08:00
|
|
|
import { headingsFontWeight } from '/imports/ui/stylesheets/styled-components/typography';
|
2021-10-26 03:34:40 +08:00
|
|
|
|
|
|
|
const QuickPollButton = styled(Button)`
|
2023-07-31 22:24:25 +08:00
|
|
|
margin-left: .5rem;
|
|
|
|
padding: .1rem;
|
2021-10-26 03:34:40 +08:00
|
|
|
box-shadow: none !important;
|
2023-07-31 22:24:25 +08:00
|
|
|
background-clip: unset !important;
|
2021-10-26 03:34:40 +08:00
|
|
|
|
|
|
|
& > span:first-child {
|
2021-10-26 20:37:26 +08:00
|
|
|
border-radius: ${borderSizeLarge};
|
2021-10-26 03:34:40 +08:00
|
|
|
font-size: small;
|
2021-10-26 20:37:26 +08:00
|
|
|
font-weight: ${headingsFontWeight};
|
2021-10-26 03:34:40 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > span:first-child:hover {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
QuickPollButton,
|
|
|
|
};
|