We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10bd9ab + d718074 commit 44b410cCopy full SHA for 44b410c
1 file changed
src/components/home/DiaryList.tsx
@@ -93,13 +93,19 @@ export const DiaryTitle = styled.div`
93
94
export const TagWrapper = styled.div`
95
display: flex;
96
- gap: 8px;
97
- font-size: 14px;
98
- color: #3b82f6;
+ flex-wrap: nowrap;
+ overflow: hidden;
+ white-space: nowrap;
99
+ text-overflow: ellipsis;
100
margin-bottom: 8px;
101
`;
102
-export const Tag = styled.span``;
103
+export const Tag = styled.span`
104
+ font-size: 14px;
105
+ color: #3b82f6;
106
+ margin-right: 8px;
107
+ flex-shrink: 0;
108
+`;
109
110
export const Content = styled.div`
111
font-size: 14px;
0 commit comments