bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/autoplay/styles.js
2022-02-14 20:20:50 +00:00

25 lines
424 B
JavaScript

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
const AutoplayPrompt = styled.span`
margin-top: auto;
margin-bottom: auto;
`;
const AutoplayButton = styled(Button)`
&:focus {
outline: none !important;
}
span:last-child {
color: black;
font-size: 1rem;
font-weight: 600;
}
`;
export default {
AutoplayPrompt,
AutoplayButton,
};