{t('FOOTER.madeWithLove')}
Wonderland @@ -19,15 +26,12 @@ export const Footer = () => { }; const FooterContainer = styled('footer')(() => { - const { currentTheme } = useCustomTheme(); return { display: 'flex', - height: `${FOOTER_HEIGHT}rem`, - padding: '0 8rem', + height: `5.5rem`, + padding: '1rem', alignItems: 'center', justifyContent: 'space-between', - backgroundColor: currentTheme.backgroundSecondary, - borderTop: currentTheme.border, width: '100%', }; }); @@ -35,7 +39,7 @@ const FooterContainer = styled('footer')(() => { const Subtitle = styled('div')({ display: 'flex', alignItems: 'center', - gap: '0.8rem', + gap: '0.25rem', '& p': { display: 'inline-block', }, @@ -44,3 +48,24 @@ const Subtitle = styled('div')({ color: 'inherit', }, }); + +const SBox = styled(Box)({ + display: 'flex', + gap: '0.25rem', + alignItems: 'center', +}); + +const IconText = styled(Box)({ + display: 'flex', + gap: '1rem', + alignItems: 'center', + backgroundColor: '#262B33', + borderRadius: '1.5rem', + padding: '1rem', +}); + +const SText = styled(Typography)({ + backgroundColor: '#262B33', + borderRadius: '1.5rem', + padding: '1rem', +});