Skip to content

Commit 518edaf

Browse files
authored
fix: footer (#40)
1 parent 456c417 commit 518edaf

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

src/components/organisms/Footer/index.tsx

+21-14
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,17 @@ export const Footer = () => {
184184
sx={
185185
isTabletOrOver
186186
? {
187+
fontFamily: 'Poppins',
187188
position: 'absolute',
188-
right: '0px'
189+
right: '0px',
190+
color: Colors.text.primary,
191+
fontSize: '12px'
192+
}
193+
: {
194+
fontFamily: 'Poppins',
195+
color: Colors.text.primary,
196+
fontSize: '10px'
189197
}
190-
: {}
191198
}
192199
>
193200
<Typography
@@ -199,19 +206,19 @@ export const Footer = () => {
199206
textAlign: isTabletOrOver ? 'right' : 'left'
200207
}}
201208
>
202-
<Box>Go Conference</Box>
203-
<Trans t={t} i18nKey="gopher_copyright">
204-
the_gopher_was_desigined_by
205-
<Link href="http://reneefrench.blogspot.com/" target="_blank">
206-
author
207-
</Link>
208-
illustrations_by
209-
<Link href="https://twitter.com/tottie_designer" target="_blank">
210-
author
211-
</Link>
212-
.
213-
</Trans>
209+
Go Conference
214210
</Typography>
211+
<Trans t={t} i18nKey="gopher_copyright" fontSize={isTabletOrOver ? '12px' : '10px'}>
212+
the_gopher_was_desigined_by
213+
<Link href="http://reneefrench.blogspot.com/" target="_blank">
214+
author
215+
</Link>
216+
illustrations_by
217+
<Link href="https://twitter.com/tottie_designer" target="_blank">
218+
author
219+
</Link>
220+
.
221+
</Trans>
215222
</Box>
216223
</FooterBottom>
217224
</Box>

0 commit comments

Comments
 (0)