bigbluebutton-Github/bigbluebutton-html5/imports/ui/services/notification/styles.js

20 lines
487 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
import {
toastMargin,
} from '/imports/ui/stylesheets/styled-components/general';
import {
colorPrimary,
} from '/imports/ui/stylesheets/styled-components/palette';
const HelpLinkButton = styled(Button)`
position: relative;
width: 100%;
margin-top: ${toastMargin};
color: ${colorPrimary};
background-color: transparent;
`;
export default { HelpLinkButton };