Update hover effect on menu items and user links

This commit is contained in:
Mattias 2024-04-15 16:38:17 +02:00
parent bbac1ed4c8
commit 2bc3b1b665
2 changed files with 3 additions and 3 deletions

View file

@ -65,7 +65,7 @@ function DisplayUserProject(): JSX.Element {
<Link <Link
to={`/PMViewUnsignedReport/${projectName}/${usernames[index]}/${unsignedReport.week}`} to={`/PMViewUnsignedReport/${projectName}/${usernames[index]}/${unsignedReport.week}`}
> >
<h1 className="underline cursor-pointer font-bold"> <h1 className="cursor-pointer font-bold hover:font-extrabold hover:underline">
View Report View Report
</h1> </h1>
</Link> </Link>

View file

@ -50,7 +50,7 @@ function ProjectMembers(): JSX.Element {
{projectMember.Username !== {projectMember.Username !==
localStorage.getItem("username") && ( localStorage.getItem("username") && (
<h1 <h1
className="underline cursor-pointer font-bold" className="cursor-pointer font-bold hover:font-extrabold hover:underline"
onClick={() => { onClick={() => {
confirm( confirm(
"Are you sure you want to delete this user? This action cannot be undone.", "Are you sure you want to delete this user? This action cannot be undone.",
@ -64,7 +64,7 @@ function ProjectMembers(): JSX.Element {
<Link <Link
to={`/otherUsersTimeReports/${projectName}/${projectMember.Username}`} to={`/otherUsersTimeReports/${projectName}/${projectMember.Username}`}
> >
<h1 className="underline cursor-pointer font-bold"> <h1 className="cursor-pointer font-bold hover:font-extrabold hover:underline">
View Reports View Reports
</h1> </h1>
</Link> </Link>