From d718074a40f4ca068cb5247b53480c8d9a219ddd Mon Sep 17 00:00:00 2001 From: jungsunbeen Date: Sat, 31 May 2025 15:55:01 +0900 Subject: [PATCH] =?UTF-8?q?style:=20=ED=83=9C=EA=B7=B8=20=EC=8A=A4?= =?UTF-8?q?=ED=83=80=EC=9D=BC=20=EA=B0=9C=EC=84=A0=20=EB=B0=8F=20=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=95=84=EC=9B=83=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/home/DiaryList.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/components/home/DiaryList.tsx b/src/components/home/DiaryList.tsx index 1735393..1902116 100644 --- a/src/components/home/DiaryList.tsx +++ b/src/components/home/DiaryList.tsx @@ -93,13 +93,19 @@ export const DiaryTitle = styled.div` export const TagWrapper = styled.div` display: flex; - gap: 8px; - font-size: 14px; - color: #3b82f6; + flex-wrap: nowrap; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; margin-bottom: 8px; `; -export const Tag = styled.span``; +export const Tag = styled.span` + font-size: 14px; + color: #3b82f6; + margin-right: 8px; + flex-shrink: 0; +`; export const Content = styled.div` font-size: 14px;