Skip to content

Commit e3b0815

Browse files
user profile and dashboard ui issue fixes
1 parent d5800d0 commit e3b0815

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/Header/Header.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
font-size: medium;
2020
}
2121

22-
.card {
22+
.headerCard {
2323
margin-left: 35px;
2424
margin-right: 50px;
2525
}

src/components/Header/Header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ export function Header(props) {
608608
</div>
609609
{props.auth.isAuthenticated && isModalVisible && (
610610
<div className={`${darkMode ? 'bg-oxford-blue' : ''} card-wrapper`}>
611-
<Card color="primary">
611+
<Card color="primary" className='headerCard'>
612612
<div className="close-button">
613613
<Button close onClick={closeModal} />
614614
</div>

src/components/LeaderBoard/Leaderboard.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
border-top-color: rgb(222, 226, 230);
6868
}
6969
}
70-
/* .row {
70+
.row {
7171
width: 97%;
72-
} Commented since it is breaking the UI in the team member's weekly summary tab*/
72+
}
7373

7474
.table-fixed tbody td {
7575
white-space: normal; /* Allow text wrapping within cells */

0 commit comments

Comments
 (0)