Files
twenty/packages/twenty-website/src/app/_components/oss-friends/CardContainer.tsx
Ady Beraud dc82ff56b8 Update oss friends (#5108)
Modified OSS friends to fit figma (fonts, colors, margins etc. ) and
made it responsive.

---------

Co-authored-by: Ady Beraud <a.beraud96@gmail.com>
2024-04-24 08:03:15 +02:00

24 lines
463 B
TypeScript

'use client';
import styled from '@emotion/styled';
const Container = styled.div`
display: flex;
flex-wrap: wrap;
gap: 32px;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
width: 95%;
margin-bottom: 24px;
@media (max-width: 800px) {
width: 100%;
margin: 0;
justify-content: center;
}
`;
export const CardContainer = ({ children }: { children?: React.ReactNode }) => {
return <Container>{children}</Container>;
};