Skip to content

Commit

Permalink
fix deployment issues
Browse files Browse the repository at this point in the history
  • Loading branch information
harshit-jain52 committed Nov 17, 2024
1 parent e0d6ffd commit 0f62fb0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pages/StudentDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ function StudentDashboard() {
cursor: 'pointer',
transition: 'background-color 0.2s ease',
}}
onMouseEnter={(e) => (e.target.style.backgroundColor = '#2b6cb0')}
onMouseLeave={(e) => (e.target.style.backgroundColor = '#3182ce')}
onMouseEnter={(e) => ((e.target as HTMLAnchorElement).style.backgroundColor = '#2b6cb0')}
onMouseLeave={(e) => ((e.target as HTMLAnchorElement).style.backgroundColor = '#3182ce')}
onFocus={(e) => (e.target.style.boxShadow = '0 0 0 4px rgba(56, 189, 248, 0.5)')}
onBlur={(e) => (e.target.style.boxShadow = 'none')}
>
Expand Down Expand Up @@ -264,8 +264,8 @@ function StudentDashboard() {
cursor: 'pointer',
transition: 'background-color 0.2s ease',
}}
onMouseEnter={(e) => (e.target.style.backgroundColor = '#2b6cb0')}
onMouseLeave={(e) => (e.target.style.backgroundColor = '#3182ce')}
onMouseEnter={(e) => ((e.target as HTMLAnchorElement).style.backgroundColor = '#2b6cb0')}
onMouseLeave={(e) => ((e.target as HTMLAnchorElement).style.backgroundColor = '#3182ce')}
onFocus={(e) => (e.target.style.boxShadow = '0 0 0 4px rgba(56, 189, 248, 0.5)')}
onBlur={(e) => (e.target.style.boxShadow = 'none')}
>
Expand Down Expand Up @@ -302,8 +302,8 @@ function StudentDashboard() {
cursor: 'pointer',
transition: 'background-color 0.2s ease',
}}
onMouseEnter={(e) => (e.target.style.backgroundColor = '#2b6cb0')}
onMouseLeave={(e) => (e.target.style.backgroundColor = '#3182ce')}
onMouseEnter={(e) => ((e.target as HTMLAnchorElement).style.backgroundColor = '#2b6cb0')}
onMouseLeave={(e) => ((e.target as HTMLAnchorElement).style.backgroundColor = '#3182ce')}
onFocus={(e) => (e.target.style.boxShadow = '0 0 0 4px rgba(56, 189, 248, 0.5)')}
onBlur={(e) => (e.target.style.boxShadow = 'none')}
>
Expand Down

0 comments on commit 0f62fb0

Please sign in to comment.