feat: responsive breadcrumbsd

This commit is contained in:
2025-05-31 17:31:06 +02:00
parent 0d7b1355d5
commit cef9dae4d3

View File

@ -14,7 +14,7 @@ interface IBreadcrumbsProps {
const Breadcrumbs: FC<IBreadcrumbsProps> = ({ items, className }) => {
return (
<div
className={`${className ? `${className} ` : ""} flex flex-row p-3 gap-3 items-center text-gray-800 dark:text-gray-200`}
className={`${className ? `${className} ` : ""} flex flex-row p-1 sm:p-3 gap-3 items-center text-gray-800 dark:text-gray-200 text-sm sm:text-base`}
>
{items.map((item, index) => (
<>