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>
This commit is contained in:
Ady Beraud
2024-04-24 09:03:15 +03:00
committed by GitHub
parent fafa56411c
commit dc82ff56b8
5 changed files with 53 additions and 20 deletions

View File

@ -9,6 +9,13 @@ const Container = styled.div`
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 }) => {