You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
377 B
23 lines
377 B
4 years ago
|
import styled from 'styled-components';
|
||
|
|
||
|
import DEFAULT_THEME from '../../lib/consts/DEFAULT_THEME';
|
||
|
|
||
|
const PageCenterContainer = styled.div`
|
||
|
width: 50%;
|
||
|
|
||
|
padding-top: 1em;
|
||
|
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
|
||
|
> :not(:first-child) {
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
PageCenterContainer.defaultProps = {
|
||
|
theme: DEFAULT_THEME,
|
||
|
};
|
||
|
|
||
|
export default PageCenterContainer;
|