File tree Expand file tree Collapse file tree 6 files changed +10
-8
lines changed
src/client/src/pages/DataView360/components Expand file tree Collapse file tree 6 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ class Adoptions extends Component {
42
42
// todo: update when we add pet info
43
43
// todo: clean array of animal_id
44
44
return ( < Container className = { styles . adoptions } style = { { "marginTop" :"1em" } } >
45
- < Typography className = { styles . adoptions_title } variant = 'h4' > Adoption/Foster Records(Top 3)</ Typography >
45
+ < Typography className = { styles . adoptions_title } variant = 'h4' > Adoption/Foster Records (Top 3)</ Typography >
46
46
< TableContainer className = "main_table_container" style = { { "marginTop" :"1em" } } component = { Paper } variant = 'outlined' >
47
47
< Table className = "main_table" >
48
48
< TableHead >
Original file line number Diff line number Diff line change @@ -20,13 +20,9 @@ class ContactInfo extends Component {
20
20
let phone = _ . isEmpty ( phoneStr ) ? '-' : phoneStr . split ( " " ) . join ( "" ) ;
21
21
22
22
return ( < Container className = { styles . contact_info } >
23
- < Typography align = 'center' variant = 'h4' > Contact Info</ Typography >
24
23
< Paper variant = 'outlined' className = { styles . contact_info_main } style = { { padding :'1em' } } >
25
- < div style = { { "display" : "flex" , "justifyContent" : "space-between" } } >
24
+ < div className = { styles . contact_container } >
26
25
< Typography className = { styles . contact_info_name } >
27
- < span style = { { 'fontWeight' :'600' } } >
28
- { 'Name:\t' }
29
- </ span >
30
26
< span >
31
27
{ _ . get ( this . props , "participant.first_name" ) } { '\t' }
32
28
{ _ . get ( this . props , "participant.last_name" ) }
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class Donations extends Component {
53
53
render ( ) {
54
54
return (
55
55
< Container className = { styles . donations } style = { { "marginTop" :"1em" } } >
56
- < Typography className = { styles . donations_title } variant = 'h4' > Financial Support Activity(Top 3)</ Typography >
56
+ < Typography className = { styles . donations_title } variant = 'h4' > Financial Support Activity (Top 3)</ Typography >
57
57
< TableContainer className = "main_table_container" style = { { "marginTop" :"1em" } } component = { Paper } variant = 'outlined' >
58
58
< Table className = "main_table" >
59
59
< TableHead >
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class Volunteer extends Component {
72
72
</ TableContainer >
73
73
</ Container >
74
74
< Container className = { styles . volonteer_history } style = { { "marginTop" :"1em" } } >
75
- < Typography className = { styles . volonteer_history_title } variant = 'h4' > Volunteer History(Top 3)</ Typography >
75
+ < Typography className = { styles . volonteer_history_title } variant = 'h4' > Volunteer History (Top 3)</ Typography >
76
76
< TableContainer className = "main_table_container" style = { { "marginTop" :"1em" } } component = { Paper } variant = 'outlined' >
77
77
< Table className = "main_table" >
78
78
< TableHead >
Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ div.contact_info_main::before {
27
27
overflow : hidden;
28
28
transform : translate (-50% , 0 );
29
29
}
30
+ div .contact_info_container {
31
+ display : flex;
32
+ flex-direction : column;
33
+ justify-content : flex-start;
34
+ }
30
35
p .contact_info_name {
31
36
margin-bottom : 10px ;
32
37
font-size : 20px ;
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ div.main_table_container {
11
11
.main_table thead th ,
12
12
.main_table tbody td {
13
13
padding : 12px 10px 12px 20px ;
14
+ text-align : left;
14
15
}
15
16
.main_table thead th : last-child ,
16
17
.main_table tbody td : last-child {
You can’t perform that action at this time.
0 commit comments