Skip to content

Commit

Permalink
💄 Adjust text alignment #2720
Browse files Browse the repository at this point in the history
  • Loading branch information
padms committed Jan 3, 2025
1 parent 515364d commit 376a067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/sections/AnchorLinkList/AnchorLinkList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const AnchorLinkList = forwardRef<HTMLElement, AnchorLinkListProps>(function Anc
{anchorList?.map((anchorLink: { id: string; title?: string; anchorReference?: string }) => {
const anchor = anchorLink?.anchorReference ? `#${anchorLink?.anchorReference}` : ''
return (
<li key={`anchor_link_${anchorLink?.id}`} className="w-full flex justify-center">
<li key={`anchor_link_${anchorLink?.id}`} className="w-full flex justify-start">
<ButtonLink variant="ghost" href={anchor} className="w-max text-moss-green-100">
{anchorLink?.title}
</ButtonLink>
Expand Down

0 comments on commit 376a067

Please sign in to comment.