Adjust people tab sizes (font and images)
This commit is contained in:
parent
01f930ba30
commit
ce0720ecdb
3 changed files with 12 additions and 8 deletions
|
@ -129,7 +129,7 @@ function AssignmentsTab({ assignmentsTabData, layoutType }) {
|
||||||
sx={assignmentContainer}
|
sx={assignmentContainer}
|
||||||
disableGutters
|
disableGutters
|
||||||
>
|
>
|
||||||
<Typography variant="body1" sx={assignmentTypography}>
|
<Typography variant="h5" sx={assignmentTypography}>
|
||||||
<Link
|
<Link
|
||||||
sx={assignmentLink}
|
sx={assignmentLink}
|
||||||
href={`/assignment/${a.id}`}
|
href={`/assignment/${a.id}`}
|
||||||
|
@ -177,7 +177,7 @@ function AssignmentsTab({ assignmentsTabData, layoutType }) {
|
||||||
sx={assignmentContainer}
|
sx={assignmentContainer}
|
||||||
disableGutters
|
disableGutters
|
||||||
>
|
>
|
||||||
<Typography variant="body1" sx={assignmentTypography}>
|
<Typography variant="h5" sx={assignmentTypography}>
|
||||||
<Link
|
<Link
|
||||||
sx={assignmentLink}
|
sx={assignmentLink}
|
||||||
href={`/assignment/${a.id}`}
|
href={`/assignment/${a.id}`}
|
||||||
|
|
|
@ -24,12 +24,14 @@ const desktopPersonContainer = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const desktopPersonAvatar = {
|
const desktopPersonAvatar = {
|
||||||
width: '60px',
|
width: '50px',
|
||||||
height: '60px',
|
height: '50px',
|
||||||
marginRight: '15px',
|
marginRight: '15px',
|
||||||
};
|
};
|
||||||
|
|
||||||
const desktopPersonName = {};
|
const desktopPersonName = {
|
||||||
|
fontSize: '1.3em',
|
||||||
|
};
|
||||||
|
|
||||||
const desktopEmptyStateContainer = {
|
const desktopEmptyStateContainer = {
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
|
|
|
@ -24,12 +24,14 @@ const desktopPersonContainer = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const desktopPersonAvatar = {
|
const desktopPersonAvatar = {
|
||||||
width: '60px',
|
width: '50px',
|
||||||
height: '60px',
|
height: '50px',
|
||||||
marginRight: '15px',
|
marginRight: '15px',
|
||||||
};
|
};
|
||||||
|
|
||||||
const desktopPersonName = {};
|
const desktopPersonName = {
|
||||||
|
fontSize: '1.3em',
|
||||||
|
};
|
||||||
|
|
||||||
const desktopEmptyStateContainer = {
|
const desktopEmptyStateContainer = {
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
|
|
Loading…
Reference in a new issue