Skip to content

Commit

Permalink
design: 텍스트 스타일 지정 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian authored Mar 21, 2024
1 parent 827c336 commit 6ae4869
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/containers/study/Feed/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ const Feed = () => {
{FeedDate.map((data) => {
return (
<Flex key={data.date} direction="column" gap="2">
{data.date}
<Text textStyle="md">{data.date}</Text>
<UnorderedList spacing="3">
{data.content.map((content) => {
return (
<ListItem key={content.id} flexDir="row">
<Flex>
<Text fontWeight="bold">{content.name} </Text>
님이 {content.subject}{content.action}했습니다.
<Text textStyle="bold_md">{content.name} </Text>
<Text textStyle="md">
님이 {content.subject}{content.action}했습니다.{' '}
</Text>
</Flex>
</ListItem>
);
Expand Down

0 comments on commit 6ae4869

Please sign in to comment.