Skip to content

Commit

Permalink
fix mitchell name and add scroll for expen on dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Musa-Azeem committed Apr 22, 2024
1 parent a96e8b3 commit e26ff08
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/app/src/pages/Dashboard/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const Dashboard = () => {
</div>: ''
}
{ user && (user.position === 'chair' || user.position === 'professor') ?
<div className='dashboardCard'>
<div className='dashboardCard dashboardExpenCard'>
<div className='dashboardCardHeader'>
<h1>Expenditures</h1>
<button onClick={ (e) => navigate('/research-info?page=expenditures') }>See All</button>
Expand Down
4 changes: 3 additions & 1 deletion frontend/app/src/pages/Dashboard/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@
.dashboardPlot {
border: black solid thin;
}

.dashboardExpenCard {
overflow-x: auto;
}
/* Display One Column On Small Screen Sizes */
@media (max-width: 1300px) {
.dashboardBody { grid-template-columns: repeat(1, 1fr); }
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/src/pages/SplashPage/SplashPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const SplashPage = () => {
</div>
<div className="splashPageTeamMember">
<div>
<h2>Mitchel Jonker</h2>
<h2>Mitchell Jonker</h2>
<p>[email protected]</p>
</div>
<a className="splashPageTeamMemberLinkedIn" href="https://www.linkedin.com/in/jonker-mitchell/" target="_blank">
Expand Down

0 comments on commit e26ff08

Please sign in to comment.