Merge branch 'main' of github.com:CPSC319-Winter-term-2/Alley-HSBC-Frontend into main
This commit is contained in:
commit
9852ced6b6
@ -31,7 +31,7 @@ const LowerBody: React.FC<Props> = (props) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Typography
|
<Typography
|
||||||
sx={{ color: "white", my: 1 }}
|
sx={{ color: "black", mt: 1, borderBottom: 1, borderColor: "#ac000d", pb: 1 }}
|
||||||
variant="h4"
|
variant="h4"
|
||||||
textAlign="center"
|
textAlign="center"
|
||||||
>
|
>
|
||||||
@ -56,6 +56,8 @@ const LowerBody: React.FC<Props> = (props) => {
|
|||||||
px: "10px",
|
px: "10px",
|
||||||
borderTop: 1,
|
borderTop: 1,
|
||||||
borderBottom: i === meetings.length - 1 ? 1 : 0,
|
borderBottom: i === meetings.length - 1 ? 1 : 0,
|
||||||
|
borderColor: "#af000d",
|
||||||
|
backgroundColor: "#fff5f5"
|
||||||
}}
|
}}
|
||||||
key={i}
|
key={i}
|
||||||
>
|
>
|
||||||
|
|||||||
@ -92,10 +92,10 @@ const UpperBody: React.FC<Props> = ({ contactInfo }) => {
|
|||||||
mx: 4,
|
mx: 4,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Typography variant="h3">{contactInfo.name}</Typography>
|
<Typography sx={{ mt: 2 }} variant="h3">{contactInfo.name}</Typography>
|
||||||
{!favoritesUuids.includes(contactInfo.uuid) ? (
|
{!favoritesUuids.includes(contactInfo.uuid) ? (
|
||||||
<Button
|
<Button
|
||||||
variant="outlined"
|
variant="contained"
|
||||||
color="success"
|
color="success"
|
||||||
startIcon={<AddIcon />}
|
startIcon={<AddIcon />}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
@ -106,7 +106,7 @@ const UpperBody: React.FC<Props> = ({ contactInfo }) => {
|
|||||||
</Button>
|
</Button>
|
||||||
) : (
|
) : (
|
||||||
<Button
|
<Button
|
||||||
variant="outlined"
|
variant="contained"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
startIcon={<RemoveIcon />}
|
startIcon={<RemoveIcon />}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
|
|||||||
Reference in New Issue
Block a user