File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ import FeedbackCard from "../../components/FeedbackCard"
27
27
import { translateMessageId } from "../../utils/translations"
28
28
import { getImage } from "../../utils/image"
29
29
30
+ const ProblemCardContainer = styled ( CardContainer ) `
31
+ max-width: ${ ( props ) => props . theme . breakpoints . l } ;
32
+ margin: 0 auto;
33
+ `
34
+
30
35
const StyledCardContainer = styled ( CardContainer ) `
31
36
margin-top: 2rem;
32
37
margin-bottom: 3rem;
@@ -83,11 +88,6 @@ const paths = [
83
88
title : < Translation id = "page-upgrades-vision-title-2" /> ,
84
89
description : < Translation id = "page-upgrades-vision-desc-2" /> ,
85
90
} ,
86
- {
87
- emoji : ":high_voltage_sign:" ,
88
- title : < Translation id = "page-upgrades-vision-title-3" /> ,
89
- description : < Translation id = "page-upgrades-vision-desc-3" /> ,
90
- } ,
91
91
]
92
92
93
93
const VisionPage = ( {
@@ -192,7 +192,7 @@ const VisionPage = ({
192
192
< CenterH2 >
193
193
< Translation id = "page-upgrades-vision-problems" />
194
194
</ CenterH2 >
195
- < CardContainer >
195
+ < ProblemCardContainer >
196
196
{ paths . map ( ( path , idx ) => (
197
197
< CentreCard
198
198
key = { idx }
@@ -201,7 +201,7 @@ const VisionPage = ({
201
201
description = { path . description }
202
202
/>
203
203
) ) }
204
- </ CardContainer >
204
+ </ ProblemCardContainer >
205
205
</ Content >
206
206
< TrilemmaContent >
207
207
< Trilemma />
You can’t perform that action at this time.
0 commit comments