Skip to content

Commit

Permalink
make the status author same size and color as date
Browse files Browse the repository at this point in the history
  • Loading branch information
chiaberry committed Jul 19, 2023
1 parent 85aa5ee commit 58d9966
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,6 @@ const useStyles = makeStyles((theme) => ({
},
overflowWrap: "break-word",
},
fieldAuthor: {
marginRight: ".25rem",
fontSize: ".8rem",
},
knackFieldLabelText: {
width: "calc(100% - 2rem)",
cursor: "pointer",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ const ProjectSummaryStatusUpdate = ({ projectId, data, refetch, classes }) => {
{!!statusUpdate && (
<div>
<div>{parse(String(statusUpdate))}</div>
<span className={classes.fieldAuthor}>{addedBy}</span>
<span className={classes.fieldLabelSmall}>{dateCreated}</span>
<span className={classes.fieldLabelSmall}>
{addedBy} - {dateCreated}
</span>
</div>
)}
</DashboardStatusModal>
Expand Down

0 comments on commit 58d9966

Please sign in to comment.