bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-provider/many-users-notify/styles.js

36 lines
715 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import { colorPrimary } from '/imports/ui/stylesheets/styled-components/palette';
import Styled from '/imports/ui/components/breakout-room/styles';
2022-02-15 04:20:50 +08:00
import Button from '/imports/ui/components/common/button/component';
const Info = styled.p`
margin: 0;
`;
const ButtonWrapper = styled(Styled.BreakoutActions)`
background-color: inherit;
&:focus,&:hover {
background-color: inherit;
}
`;
const ManyUsersButton = styled(Button)`
flex: 0 1 48%;
color: ${colorPrimary};
margin: 0;
font-weight: inherit;
background-color: inherit;
&:focus,&:hover {
background-color: inherit;
}
`;
export default {
Info,
ButtonWrapper,
ManyUsersButton,
};