File tree Expand file tree Collapse file tree 4 files changed +34
-10
lines changed Expand file tree Collapse file tree 4 files changed +34
-10
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ export default function Avatar({ person }) {
12
12
"working at QuantStack as a " +
13
13
person . position
14
14
}
15
+ width = { "300px" }
16
+ height = { "300px" }
15
17
/>
16
18
</ div >
17
19
) ;
Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ import Link from "@docusaurus/Link";
5
5
import React from "react" ;
6
6
import Avatar from "./Avatar" ;
7
7
8
-
9
-
10
8
export function Distinction ( { person } ) {
11
9
if ( person . distinctionTitle . length !== 0 ) {
12
10
return (
@@ -33,10 +31,20 @@ export default function LargePortraitCard({ person }) {
33
31
< div className = { "container" } >
34
32
< div className = { "row padding-none" } >
35
33
< div className = "col col--12 col--offset-1" >
36
- < div className = { styles . large_card_complete_name } >
34
+ < div
35
+ className = {
36
+ styles . large_card_complete_name
37
+ }
38
+ >
37
39
{ person . completeName }
38
40
</ div >
39
- < div className = { styles . large_card_position } > { person . position } </ div >
41
+ < div
42
+ className = {
43
+ styles . large_card_position
44
+ }
45
+ >
46
+ { person . position }
47
+ </ div >
40
48
</ div >
41
49
</ div >
42
50
< div className = "row" >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ div .row {
27
27
28
28
.bio_container {
29
29
font-family : var (--ifm-font-family-roboto );
30
- font-size : 16 px ;
30
+ font-size : 14 px ;
31
31
font-style : normal;
32
32
font-weight : 400 ;
33
33
line-height : 24px ;
@@ -59,14 +59,15 @@ div .row {
59
59
60
60
.large_card_complete_name {
61
61
font-family : var (--ifm-font-family-roboto );
62
- font-size : 32 px ;
62
+ font-size : 28 px ;
63
63
color : var (---ifm-text-color );
64
64
font-style : normal;
65
65
font-weight : 400 ;
66
66
line-height : 40px ;
67
67
color : var (--ifm-color-primary-p2 );
68
68
}
69
- s .large_card_position {
69
+
70
+ .large_card_position {
70
71
font-size : var (--ifm--font-size-normal );
71
72
font-family : var (--ifm-font-family-roboto );
72
73
color : var (--ifm-color-primary-p2 );
@@ -76,6 +77,9 @@ s .large_card_position {
76
77
letter-spacing : 0.5px ;
77
78
}
78
79
80
+
81
+
82
+
79
83
a {
80
84
color : var (--ifm-color-primary-p2 );
81
85
}
@@ -160,6 +164,14 @@ div .join_the_team_text {
160
164
line-height : 150% ;
161
165
text-align : center;
162
166
}
167
+
168
+ .large_card_complete_name {
169
+ text-align : center;
170
+ }
171
+
172
+ .large_card_position {
173
+ text-align : center;
174
+ }
163
175
}
164
176
165
177
@media only screen and (min-width : 996px ) {
Original file line number Diff line number Diff line change @@ -28,9 +28,11 @@ export function Hero() {
28
28
styles . astronaut_column
29
29
}
30
30
>
31
- < div className = { styles . astronaut_container } >
32
- < Astronaut alt = { "Astronaut mascot of QuantStack" } />
33
- </ div >
31
+ < Astronaut
32
+ alt = { "Astronaut mascot of QuantStack" }
33
+ width = { "300px" }
34
+ height = { "300px" }
35
+ />
34
36
</ div >
35
37
</ div >
36
38
</ div >
You can’t perform that action at this time.
0 commit comments