File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,12 @@ const HeroContainer = (props: ChildOnlyProp) => (
48
48
mb = { { base : 8 , lg : 0 } }
49
49
maxH = { { base : "100%" , lg : "none" } }
50
50
{ ...props }
51
+ justify = "space-between"
51
52
/>
52
53
)
53
54
54
55
const TitleCard = ( props : ChildOnlyProp ) => (
55
- < Flex p = { 8 } direction = "column" justify = "flex-start" { ...props } />
56
+ < Flex w = "full" p = { 8 } direction = "column" justify = "flex-start" { ...props } />
56
57
)
57
58
58
59
// Roadmap layout components
@@ -140,11 +141,6 @@ export const RoadmapLayout: React.FC<IProps> = ({
140
141
/>
141
142
) : (
142
143
< HeroContainer >
143
- < Flex
144
- w = "full"
145
- flexDirection = { { base : "column" , lg : "row" } }
146
- justify = "space-between"
147
- >
148
144
< TitleCard >
149
145
{ /* TODO: Double check this slug works */ }
150
146
< Breadcrumbs slug = { slug } mb = "8" />
@@ -186,12 +182,11 @@ export const RoadmapLayout: React.FC<IProps> = ({
186
182
src = { frontmatter . image }
187
183
alt = { frontmatter . alt ?? "" }
188
184
style = { { objectFit : "contain" } }
189
- width = { 700 }
185
+ width = { 1504 }
190
186
height = { 345 }
191
187
priority
192
188
/>
193
189
</ Center >
194
- </ Flex >
195
190
</ HeroContainer >
196
191
) }
197
192
< Page >
You can’t perform that action at this time.
0 commit comments