Skip to content

Commit

Permalink
fix: Inconsistent padding in the accordion in responsive conditions
Browse files Browse the repository at this point in the history
it fixes asyncapi#3250
  • Loading branch information
ManikantaMandala committed Oct 9, 2024
1 parent 44e57e7 commit 1e3987f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/navigation/MenuBlocks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function MenuBlocks({ items = [] }: MenuBlocksProps) {
const router = useRouter();

return (
<>
<div className='py-2'>
{items.map((item, index) => {
const isExternalHref = item.href && item.href.startsWith('http');

Expand Down Expand Up @@ -66,6 +66,6 @@ export default function MenuBlocks({ items = [] }: MenuBlocksProps) {
</LinkComponent>
);
})}
</>
</div>
);
}

0 comments on commit 1e3987f

Please sign in to comment.