File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ function CurrentPriceItem(props) {
54
54
{ price_decline ? price_decline : "변동률" }
55
55
</ Text >
56
56
</ TextContainer >
57
- < Button className = "delete " title = "추가" onClick = { handler } />
57
+ < Button className = "green " title = "추가" onClick = { handler } />
58
58
</ Container >
59
59
) ;
60
60
}
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ const UserContainer = styled.div`
83
83
` ;
84
84
85
85
const ShoppingContainer = styled . div `
86
- min-height: 180px ;
86
+ min-height: 100px ;
87
87
display: flex;
88
88
flex-direction: column;
89
89
justify-content: center;
@@ -94,9 +94,11 @@ const ShoppingContainer = styled.div`
94
94
const TrendContainer = styled . div `
95
95
display: flex;
96
96
flex-wrap: wrap;
97
+ height: 120px;
98
+ align-items: center;
99
+ margin: 0 auto;
97
100
gap: 20px;
98
101
padding: 0 95px;
99
- margin-top: 20px;
100
102
` ;
101
103
102
104
function LandingPage ( ) {
@@ -207,18 +209,18 @@ function LandingPage() {
207
209
장바구니 상품을 관리해보세요!
208
210
</ SubTitleText >
209
211
</ TextContainer >
210
- < ShoppingContainer >
211
- < ShoppingBudget hideButtons = { true } />
212
- < Wrapper >
213
- < ShoppingList hideButtons = { true } />
214
- </ Wrapper >
215
- </ ShoppingContainer >
216
212
< Button
217
213
title = "장바구니 수정하기"
218
214
className = "yellow"
219
215
onClick = { ( ) => navigate ( "/shopping" ) }
220
216
/>
221
217
</ UserContainer >
218
+ < ShoppingContainer >
219
+ < ShoppingBudget hideButtons = { true } />
220
+ < Wrapper >
221
+ < ShoppingList hideButtons = { true } />
222
+ </ Wrapper >
223
+ </ ShoppingContainer >
222
224
</ >
223
225
) : (
224
226
< >
You can’t perform that action at this time.
0 commit comments