Skip to content

Commit

Permalink
feat(admin): improved style of AuthenticatedLink component
Browse files Browse the repository at this point in the history
  • Loading branch information
fbonniec committed Dec 17, 2024
1 parent 26192f3 commit a30f6f1
Showing 1 changed file with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,15 @@ export const AuthenticatedLink = ({
}, 250);
};
return (
<a href="#" title={title} onClick={handleClick} className={className || ""}>
{text}
</a>
<div className="max-w-screen-md truncate">
<a
href="#"
title={title}
onClick={handleClick}
className={className || ""}
>
{text}
</a>
</div>
);
};

0 comments on commit a30f6f1

Please sign in to comment.