24 lines
469 B
JavaScript
24 lines
469 B
JavaScript
import styled from 'styled-components';
|
|
import { fontSizeLarge } from '/imports/ui/stylesheets/styled-components/typography';
|
|
|
|
const ActivityModalContent = styled.div`
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 0;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
padding: 0.5rem;
|
|
text-align: center;
|
|
|
|
& > p {
|
|
font-size: ${fontSizeLarge};
|
|
margin: 0.5em 0;
|
|
}
|
|
`;
|
|
|
|
export default {
|
|
ActivityModalContent,
|
|
};
|