fix: css fixes

This commit is contained in:
2024-05-15 15:23:48 +01:00
parent 303bca42e9
commit 3b68e6348f
4 changed files with 10 additions and 8 deletions

View File

@ -19,11 +19,13 @@ export default function CategoryLink({
to={`/category/${id}`}
key={id}
className={classNames(
"min-w-[12rem] flex items-center justify-between gap-4 px-6 py-2 text-xl font-semibold rounded-xl",
"text-xl font-semibold rounded-xl",
className
)}>
{name}
<Icon name={icon} />
<div className="min-w-[12rem] flex items-center justify-between gap-4 px-6 py-2 whitespace-nowrap">
{name}
<Icon name={icon} size={20} />
</div>
</Link>
);
}