531241d269
* 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
23 lines
340 B
JavaScript
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,
|
|
};
|