Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into sprint/4/spike/337/…
Browse files Browse the repository at this point in the history
…lint-backend
  • Loading branch information
swostikpati committed Dec 7, 2023
2 parents e3ccd70 + fca562c commit afc687d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 4 additions & 6 deletions front-end/src/components/admin/StudentDetails/StudentDetails.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@

.admin-student-details li {
margin: 10px 0;
font-size: 1rem;
font-size: 0.9rem;
}

.student-details li strong {
font-weight: bold;
}


.student-details li strong {
font-weight: bold;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import './StudentDetails.css';
const StudentDetails = ({ props }) => {
const name = props.studentName;
const netID = props.studentNetID;
const date = props.dateCreated;

return (
<div className="admin-student-details">
Expand All @@ -14,6 +15,9 @@ const StudentDetails = ({ props }) => {
<li>
<strong>Netid:</strong> {netID}
</li>
<li>
<strong>Issue Creation Date:</strong> {date}
</li>
</ul>
</div>
);
Expand Down

0 comments on commit afc687d

Please sign in to comment.