mirror of
https://github.com/lingble/twenty.git
synced 2025-10-29 20:02:29 +00:00
* OSS Friends list is out of date Co-authored-by: Thiago Nascimbeni <tnascimbeni@gmail.com> * Add icons Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Thiago Nascimbeni <tnascimbeni@gmail.com> * Refactor according to review Co-authored-by: Thiago Nascimbeni <tnascimbeni@gmail.com> Co-authored-by: v1b3m <vibenjamin6@gmail.com> * OSS Friends list is out of date Co-authored-by: Thiago Nascimbeni <tnascimbeni@gmail.com> Co-authored-by: niteshsingh1357 <niteshsingh1357@gmail.com> Co-authored-by: v1b3m <vibenjamin6@gmail.com> --------- Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: Thiago Nascimbeni <tnascimbeni@gmail.com> Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: niteshsingh1357 <niteshsingh1357@gmail.com>
25 lines
402 B
TypeScript
25 lines
402 B
TypeScript
'use client';
|
|
|
|
import styled from '@emotion/styled';
|
|
|
|
const Container = styled.div`
|
|
display: flex;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
gap: 26px;
|
|
@media (max-width: 809px) {
|
|
width: 100%;
|
|
padding: 0px 12px 0px 12px;
|
|
}
|
|
`;
|
|
|
|
export const ContentContainer = ({
|
|
children,
|
|
}: {
|
|
children?: React.ReactNode;
|
|
}) => {
|
|
return <Container>{children}</Container>;
|
|
};
|