Modified OSS friends to fit figma (fonts, colors, margins etc. ) and made it responsive. --------- Co-authored-by: Ady Beraud <a.beraud96@gmail.com>
24 lines
463 B
TypeScript
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>;
|
|
};
|