feat(website): init

This commit is contained in:
moklick
2020-10-05 10:14:49 +02:00
parent f54b93b319
commit 277e032770
140 changed files with 30517 additions and 0 deletions
@@ -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)};
`;