@@ -28,28 +28,28 @@ function LandingPageCop() {
28
28
29
29
return (
30
30
< div className = "flex-container align-center justify-center py-5" >
31
- < h2 className = "col-12 text-center my-4 " > Communities of Practice (COP)</ h2 >
31
+ < h2 className = "col-12 text-center text-4xl font-bold leading-normal my-8 " > Communities of Practice (COP)</ h2 >
32
32
< div className = "row paragraph-1 text-center mb-5 landing-cop-description" >
33
33
A Community of Practice (CoP) is a group of volunteers who share a
34
34
common interest in a topic and meet regularly to fulfill both individual
35
35
and group goals. We use CoPs to share effective practices and relevant
36
36
domain knowledge to help our members grow.
37
37
</ div >
38
- < div className = "row m-5 landing-cop-circle-container" >
38
+ < div className = "row m-10 landing-cop-circle-container" >
39
39
{ copData . map ( ( cop ) => {
40
40
return (
41
41
< CircleCard
42
42
key = { cop . id }
43
43
size = "lg"
44
- addClass = "m-4 "
44
+ addClass = "m-8 "
45
45
onClick = { ( ) => {
46
46
handleCopData ( cop . id ) ;
47
47
setIsDialogOpen ( true ) ;
48
48
} }
49
49
role = "button"
50
50
>
51
51
< div className = "flex-column" >
52
- < div className = "pb-3 row justify-center" >
52
+ < div className = "pb-6 row justify-center" >
53
53
< cop . icon strokeWidth = "0.2" height = "65" aria-hidden = "true" />
54
54
</ div >
55
55
< div className = "title-4 landing-cop-circle-title text-center" >
@@ -82,9 +82,9 @@ function LandingPageCop() {
82
82
key = { cop . id }
83
83
isActive = { isActive }
84
84
onClick = { ( ) => handleCopData ( cop . id ) }
85
- addClass = "flex-container justify-center align-center p-1 "
85
+ addClass = "flex-container justify-center align-center p-2 "
86
86
>
87
- < div className = "pr-1 " >
87
+ < div className = "pr-2 " >
88
88
< cop . icon
89
89
fill = { isActive ? "white" : "black" }
90
90
stroke = { isActive ? "white" : "black" }
@@ -101,11 +101,11 @@ function LandingPageCop() {
101
101
) ;
102
102
} ) }
103
103
</ nav >
104
- < div className = "col-9 ml-2 " >
104
+ < div className = "col-9 ml-4 " >
105
105
< InnerCopCard addClass = "landing-inner-cop-card-content" >
106
106
< div >
107
107
< div className = "title-3 flex-container pb-4 align-bottom" >
108
- < div className = "pr-2 " >
108
+ < div className = "pr-4 " >
109
109
{ currentDatum . icon && (
110
110
< currentDatum . icon
111
111
fill = "black"
0 commit comments