File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,22 @@ const Projects = () => {
21
21
< title > Projects | GT WebDev</ title >
22
22
</ Head >
23
23
< NavBar />
24
+
25
+ { /* Current Semster Project List */ }
24
26
< Typography variant = "h3" className = "projectSectionTitle" >
25
27
{ currentData [ 0 ] [ 'semester' ] }
26
28
</ Typography >
27
29
< Grid container columnGap = { 2 } className = "projectSectionPadding" >
28
30
{ currentData [ 0 ] [ 'projects' ] . map ( ( cur , ind ) => {
29
31
return (
30
- < Box sx = { { ...commonStyles , borderRadius : 5 } } className = "projectBoxInfo" >
32
+ < Box sx = { { ...commonStyles , borderRadius : 5 } } className = "projectBoxInfo projectBoxTxt " >
31
33
{ cur [ 'name' ] }
32
34
</ Box >
33
35
)
34
36
} ) }
35
37
</ Grid >
38
+
39
+ { /* List of previous semester projects */ }
36
40
{ previousData . map ( ( cur , ind ) => {
37
41
return (
38
42
< div >
@@ -42,7 +46,7 @@ const Projects = () => {
42
46
< Grid container columnGap = { 2 } className = "projectSectionPadding" >
43
47
{ cur [ 'projects' ] . map ( ( cur , ind ) => {
44
48
return (
45
- < Box sx = { { ...commonStyles , borderRadius : 5 } } className = "projectBoxInfo" >
49
+ < Box sx = { { ...commonStyles , borderRadius : 5 } } className = "projectBoxInfo projectBoxTxt " >
46
50
{ cur [ 'name' ] }
47
51
</ Box >
48
52
)
Original file line number Diff line number Diff line change 311
311
justify-content : center;
312
312
text-align : center;
313
313
}
314
+ .projectBoxTxt {
315
+ color : # BCF042 ;
316
+ }
314
317
.projectSectionPadding {
315
318
padding-left : 5vw ;
316
319
}
You can’t perform that action at this time.
0 commit comments