feat: responsive breadcrumbsd
This commit is contained in:
@ -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) => (
|
||||
<>
|
||||
|
Reference in New Issue
Block a user