Skip to content

Commit 9c9bce3

Browse files
committed
키노트 모바일 레이아웃 반영
1 parent 03470e1 commit 9c9bce3

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

frontend/components/service/Home/MainSlogan.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React from 'react'
22
import { useTranslation } from 'react-i18next'
3-
import { Heading2, Paragraph } from '../../../assets/styles/typo'
3+
import { Heading2 } from '../../../assets/styles/typo'
44
import styled from 'styled-components'
55

6-
const Content = styled(Paragraph)`
6+
const Content = styled.div`
77
margin-top: 1rem;
88
white-space: pre-line;
99
`

frontend/components/service/Program/KeynoteListItem.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,22 @@ import { Link } from '../../core/SnsLink'
99
const ListItem = styled.div`
1010
& + & {
1111
margin-top: 6rem;
12-
${media.mobile(`
13-
margin-top: 3rem;
14-
`)}
1512
}
1613
`
1714
const TalkBlock = styled.div`
1815
display: flex;
1916
align-items: flex-start;
2017
flex-direction: row;
18+
${media.mobile(`
19+
flex-direction: column;
20+
`)}
2121
`
2222
const PersonBlock = styled.div`
2323
flex: 1;
2424
margin-left: 2rem;
25+
${media.mobile(`
26+
margin: 1rem 0;
27+
`)}
2528
`
2629
const Speaker = styled(Heading3)`
2730
font-size: 1.6rem;

0 commit comments

Comments
 (0)