File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -203,18 +203,18 @@ const Feed: React.FC<FeedProps> = ({ feed }) => {
203203 < FeedTop >
204204 < Info onClick = { handleUserClick } >
205205 < FeedProfileImgWrapper src = { feed . user . profilePictureUrl || defaultProfile } alt = "profile" />
206- < StyledText $textTheme = { { style : 'body2-medium' } } color = { theme . colors . black } >
206+ < StyledText $textTheme = { { style : 'body2-medium' } } color = { theme . colors . text . primary } >
207207 { feed . user . nickname }
208208 </ StyledText >
209209 </ Info >
210- < FeedTimeAgo $textTheme = { { style : 'caption2-medium ' } } color = { theme . colors . gray2 } >
210+ < FeedTimeAgo $textTheme = { { style : 'caption2-regular ' } } color = { theme . colors . text . caption } >
211211 { timeAgo }
212212 </ FeedTimeAgo >
213213 < MoreBtn onClick = { handleMoreButtonClick } >
214214 < img src = { more } />
215215 </ MoreBtn >
216216 </ FeedTop >
217- < FeedText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . black } >
217+ < FeedText $textTheme = { { style : 'body2-regular' } } color = { theme . colors . text . primary } >
218218 { feed . content }
219219 </ FeedText >
220220 < FeedImgBox >
@@ -243,7 +243,7 @@ const Feed: React.FC<FeedProps> = ({ feed }) => {
243243 </ Reaction >
244244 < MatchingBtn onClick = { handleMatchingButtonClick } >
245245 < Message color = "white" />
246- < StyledText $textTheme = { { style : 'body1-regular' } } color = { theme . colors . white } >
246+ < StyledText $textTheme = { { style : 'body1-regular' } } color = { theme . colors . text . contrast } >
247247 매칭 요청
248248 </ StyledText >
249249 </ MatchingBtn >
Original file line number Diff line number Diff line change @@ -162,16 +162,14 @@ export const Reaction = styled.div`
162162` ;
163163
164164export const MatchingBtn = styled . button `
165- background: ${ ( { theme } ) => theme . colors . gradient } ;
165+ background: ${ ( { theme } ) => theme . colors . brand . gradient } ;
166166 border-radius: 3.19rem;
167- backdrop-filter: blur(0.3125rem);
168167 display: flex;
169168 justify-content: center;
170169 align-items: center;
171170 padding: 0.85rem 1.25rem;
172171 gap: 0.58rem;
173172 width: 11.5rem;
174- color: white;
175173` ;
176174
177175export const MoreBtn = styled . button `
Original file line number Diff line number Diff line change @@ -9,12 +9,6 @@ export const OOTDContainer = styled.div`
99 margin-bottom: 4.25rem;
1010` ;
1111
12- export const OOTDLoading = styled . div `
13- margin-top: 200px;
14- ` ;
15-
16- // Feed
17-
1812export const FeedContainer = styled . div `
1913 display: flex;
2014 flex-direction: column;
Original file line number Diff line number Diff line change 11import styled from 'styled-components' ;
22
3- // HomeContainer
4-
53export const HomeContainer = styled . div `
64 flex-grow: 1;
75 height: auto;
You can’t perform that action at this time.
0 commit comments