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

18 lines
467 B
JavaScript
Raw Normal View History

2021-10-26 03:30:41 +08:00
import styled from 'styled-components';
import Button from '/imports/ui/components/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,
};