mirror of
https://github.com/lingble/twenty.git
synced 2025-10-30 04:12:28 +00:00
* Improve marketing website * User guide with icons * Add TOC * Linter * Basic GraphQL playground * Very basic contributors page * Failed attempt to integrate REST playground * Yarn * Begin contributors DB * Improve contributors page
23 lines
396 B
TypeScript
23 lines
396 B
TypeScript
'use client';
|
|
|
|
import styled from '@emotion/styled';
|
|
|
|
const Container = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
padding: 0px 96px 0px 96px;
|
|
@media (max-width: 809px) {
|
|
width: 100%;
|
|
padding: 0px 12px 0px 12px;
|
|
}
|
|
`;
|
|
|
|
export const ContentContainer = ({
|
|
children,
|
|
}: {
|
|
children?: React.ReactNode;
|
|
}) => {
|
|
return <Container>{children}</Container>;
|
|
};
|