chore: misc. design and link updates

This commit is contained in:
jinhojang6 2023-12-08 00:35:21 +09:00
parent 9b7161bb7e
commit 12239081e1
3 changed files with 12 additions and 2 deletions

View File

@ -26,6 +26,13 @@ const Container = styled.div`
box-sizing: border-box; box-sizing: border-box;
} }
@media (max-width: ${breakpoints.xl}px) {
sup {
font-size: 18px;
margin-left: 4px;
}
}
@media (max-width: ${breakpoints.md}px) { @media (max-width: ${breakpoints.md}px) {
font-size: 22px; font-size: 22px;
line-height: 122%; line-height: 122%;

View File

@ -41,7 +41,7 @@ const Header = styled.div`
margin-bottom: 42px; margin-bottom: 42px;
sup { sup {
font-size: 12px; font-size: 18px;
margin-left: 0px; margin-left: 0px;
} }
} }

View File

@ -1,5 +1,6 @@
import { breakpoints } from '@/configs/ui.configs' import { breakpoints } from '@/configs/ui.configs'
import styled from '@emotion/styled' import styled from '@emotion/styled'
import Link from 'next/link'
const ServiceContact = () => { const ServiceContact = () => {
return ( return (
@ -15,7 +16,9 @@ const ServiceContact = () => {
please get in touch. please get in touch.
</Description> </Description>
</Content> </Content>
<EmailButton>Email us</EmailButton> <Link href="mailto:info@free.technology">
<EmailButton>Email us</EmailButton>
</Link>
</Container> </Container>
) )
} }