feat(website): init
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import styled from '@emotion/styled';
|
||||
import { Box } from 'reflexbox';
|
||||
|
||||
import { getThemeSpacePx } from 'utils/css-utils';
|
||||
|
||||
export default styled(Box)`
|
||||
max-width: ${(p) =>
|
||||
p.maxWidth || (p.big ? p.theme.maxWidthBig : p.theme.maxWidth)};
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: ${getThemeSpacePx(3)};
|
||||
padding-right: ${getThemeSpacePx(3)};
|
||||
`;
|
||||
Reference in New Issue
Block a user