From ada70074ec79a22a8284947b42ba358f50e34a2b Mon Sep 17 00:00:00 2001 From: hady Date: Fri, 17 May 2024 17:44:34 +0530 Subject: [PATCH] Fixed breaking tags on questions --- src/components/posts/tag.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/posts/tag.tsx b/src/components/posts/tag.tsx index 1aeeaa7db..e0550b7bd 100644 --- a/src/components/posts/tag.tsx +++ b/src/components/posts/tag.tsx @@ -15,7 +15,7 @@ const Tag = forwardRef( const [backgroundColor, textColor] = useColorGenerator(name); const tagClassName = cn( - 'px-4 rounded-xl py-1 text-[12px] cursor-pointer mr-1', + 'px-4 inline-block mb-2 rounded-xl py-1 text-[12px] cursor-pointer mr-1', className, );