Skip to content

Commit 4edcefb

Browse files
committed
fix: adjust top positioning and padding in BreadCrumbs component
1 parent 19b7e71 commit 4edcefb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/BreadCrumbs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface BreadCrumbsProps {
1414

1515
const BreadCrumbs: React.FC<BreadCrumbsProps> = ({ data }) => {
1616
return (
17-
<div className="border-b sticky top-[70px] z-1 bg-secondaryOrange px-6 py-2 lg:top-[106px] lg:px-10">
17+
<div className="border-b sticky top-[70px] z-1 bg-secondaryOrange px-6 py-2 lg:top-[86px] ">
1818
<Breadcrumb className="mx-1">
1919
<BreadcrumbList className="">
2020
{data.map((item, index) => (

0 commit comments

Comments
 (0)