bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/presentation-options/styles.js

18 lines
474 B
JavaScript
Raw Normal View History

2021-10-26 03:30:41 +08:00
import styled from 'styled-components';
2022-02-15 04:20:50 +08:00
import Button from '/imports/ui/components/common/button/component';
2021-10-26 20:37:26 +08:00
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
2021-10-26 03:30:41 +08:00
const RestorePresentationButton = styled(Button)`
${({ ghost }) => ghost && `
span {
box-shadow: none;
background-color: transparent !important;
2021-10-26 20:37:26 +08:00
border-color: ${colorWhite} !important;
2021-10-26 03:30:41 +08:00
}
`}
`;
export default {
RestorePresentationButton,
};