File tree Expand file tree Collapse file tree 3 files changed +8
-18
lines changed Expand file tree Collapse file tree 3 files changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,7 @@ import styled from '@emotion/styled'
3
3
import { Image , ToggleButton } from '@offer-ui/react'
4
4
5
5
const Container = styled . div `
6
- flex: 1 0 22%;
7
-
8
- max-width: 25%;
9
-
10
6
cursor: pointer;
11
-
12
- ${ ( { theme } ) => theme . mediaQuery . mobile } {
13
- flex: 1 0 44%;
14
-
15
- max-width: 48%;
16
- }
17
7
`
18
8
19
9
const ProductImg = styled ( Image ) `
Original file line number Diff line number Diff line change 1
1
import styled from '@emotion/styled'
2
2
3
3
const ProductListWrapper = styled . div `
4
- display: flex;
5
- flex-wrap: wrap;
6
- gap: 30px;
7
- justify-content: start;
4
+ display: grid;
5
+ grid-template-columns: repeat(4, 1fr);
6
+ gap: 28px 30px;
8
7
9
8
margin-top: 20px;
10
9
11
10
${ ( { theme } ) : string => theme . mediaQuery . tablet } {
12
- gap: 18px 20px;
11
+ gap: 20px 15px ;
13
12
14
13
margin-top: 20px;
15
14
}
16
15
${ ( { theme } ) : string => theme . mediaQuery . mobile } {
17
- gap: 8px 20px;
16
+ grid-template-columns: repeat(2, 1fr);
17
+ gap: 20px 8px;
18
18
19
19
margin-top: 16px;
20
20
}
Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ const MessageBoxPage = ({ roomId: defaultRoomId }: Props): ReactElement => {
126
126
< MessageBoxPlaceholder
127
127
image = { {
128
128
url : IMAGE . MAIL ,
129
- width : '90px ' ,
130
- height : '90px '
129
+ width : '81px ' ,
130
+ height : '67px '
131
131
} }
132
132
message = { `쪽지 내역이 없어요.\n구매하고 싶은 상품에 가격을 제안해보세요.` }
133
133
/>
You can’t perform that action at this time.
0 commit comments