bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/mobile-app-modal/styles.js
Gustavo Trott 531241d269
feat: Button to transfer user to mobile App (#15183)
* Provide a link to transfer user to mobile App
* show menu option only if appStoreLink is present and it is not running on mobile app already
2022-11-15 09:49:24 -03:00

23 lines
340 B
JavaScript

import styled from 'styled-components';
const Center = styled.div`
text-align: center;
padding-top: 1rem;
padding-bottom: 1rem;
`;
const ButtonContainer = styled.div`
margin-top: 1rem;
`;
const UrlMessage = styled.div`
font-style: italic;
font-size: 1.0rem;
`;
export default {
Center,
ButtonContainer,
UrlMessage,
};