Skip to content

Commit b269e16

Browse files
feat: add members to the team
1 parent f61e0be commit b269e16

11 files changed

Lines changed: 51 additions & 2 deletions

File tree

20.6 KB
Loading
75.7 KB
Loading
35.2 KB
Loading
94.1 KB
Loading
314 KB
Loading
408 KB
Loading

frontend/public/logo192.png

-5.22 KB
Binary file not shown.

frontend/public/logo512.png

-9.44 KB
Binary file not shown.

frontend/src/components/Cards/DomainCard.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ const useStyles = makeStyles(() =>
2222
opacity: 0.8,
2323
fontWeight: "bold",
2424
},
25+
title2: {
26+
fontSize: "1rem",
27+
opacity: 0.8,
28+
fontWeight: "bold",
29+
},
2530
media: {
2631
height: "25vh",
2732
},
@@ -50,7 +55,11 @@ const DomainCard: React.FC<DomainCardProps> = ({
5055
title={name}
5156
/>
5257
<CardContent>
53-
<Typography className={classes.title}>{name}</Typography>
58+
{name.length > 16 ? (
59+
<Typography className={classes.title2}>{name}</Typography>
60+
) : (
61+
<Typography className={classes.title}>{name}</Typography>
62+
)}
5463
<a href={linkedIn} target="_blank">
5564
<IconButton>
5665
<LinkedIn />

frontend/src/pages/Domains/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const useStyles = makeStyles(() =>
1414
margin: "4vh",
1515
color: "white",
1616
fontWeight: "bold",
17-
fontSize: "1.4rem",
17+
fontSize: "1.7rem",
1818
},
1919
flexbox: {
2020
flexGrow: 1,

0 commit comments

Comments
 (0)