Skip to content

Commit 699147e

Browse files
committed
edited font color
1 parent fe6638d commit 699147e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

pages/projects.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,22 @@ const Projects = () => {
2121
<title>Projects | GT WebDev</title>
2222
</Head>
2323
<NavBar />
24+
25+
{/* Current Semster Project List */}
2426
<Typography variant="h3" className="projectSectionTitle">
2527
{currentData[0]['semester']}
2628
</Typography>
2729
<Grid container columnGap={2} className="projectSectionPadding">
2830
{currentData[0]['projects'].map((cur, ind) => {
2931
return(
30-
<Box sx={{ ...commonStyles, borderRadius: 5 }} className="projectBoxInfo">
32+
<Box sx={{ ...commonStyles, borderRadius: 5 }} className="projectBoxInfo projectBoxTxt">
3133
{cur['name']}
3234
</Box>
3335
)
3436
})}
3537
</Grid>
38+
39+
{/* List of previous semester projects */}
3640
{previousData.map((cur, ind) => {
3741
return (
3842
<div>
@@ -42,7 +46,7 @@ const Projects = () => {
4246
<Grid container columnGap={2} className="projectSectionPadding">
4347
{cur['projects'].map((cur, ind) => {
4448
return(
45-
<Box sx={{ ...commonStyles, borderRadius: 5 }} className="projectBoxInfo">
49+
<Box sx={{ ...commonStyles, borderRadius: 5 }} className="projectBoxInfo projectBoxTxt">
4650
{cur['name']}
4751
</Box>
4852
)

styles/globals.css

+3
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,9 @@ a {
311311
justify-content: center;
312312
text-align: center;
313313
}
314+
.projectBoxTxt {
315+
color: #BCF042;
316+
}
314317
.projectSectionPadding {
315318
padding-left: 5vw;
316319
}

0 commit comments

Comments
 (0)