17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
import styled from 'styled-components';
|
|
import { fontSizeBase } from '/imports/ui/stylesheets/styled-components/typography';
|
|
|
|
const TitleMessage = styled.div`
|
|
font-weight: bold;
|
|
font-size: ${fontSizeBase};
|
|
`;
|
|
|
|
const ContentMessage = styled.div`
|
|
margin-top: 1rem;
|
|
`;
|
|
|
|
export default {
|
|
TitleMessage,
|
|
ContentMessage,
|
|
};
|