We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a57a13 commit 4014e33Copy full SHA for 4014e33
apps/frontend/src/components/launches/tags.component.tsx
@@ -176,7 +176,7 @@ export const TagsComponent: FC<{
176
);
177
return (
178
<div
179
- className="flex flex-row items-center gap-2 p-2 cursor-pointer hover:bg-customColor1 group"
+ className="flex flex-row items-center gap-2 p-2 cursor-pointer hover:bg-customColor1 group max-w-72"
180
{...option}
181
>
182
{findTag ? (
@@ -202,7 +202,9 @@ export const TagsComponent: FC<{
202
+
203
</div>
204
)}
205
- {option.option.label}
+ <div className="max-w-24 overflow-hidden overflow-ellipsis whitespace-nowrap">
206
+ {option.option.label}
207
+ </div>
208
<div className="flex items-center flex-grow flex-row-reverse">
209
{findTag && (
210
<Button
0 commit comments