File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ const Title = (props: ChildOnlyProp) => (
65
65
< Text className = "mb-0 ms-2 uppercase text-body" { ...props } />
66
66
)
67
67
68
- const H2 = ( props : ChildOnlyProp ) => (
69
- < h2 className = "mb-8 mt-12 text-left tracking-normal" { ...props } />
68
+ const H2 = ( props : HTMLAttributes < HTMLHeadingElement > ) => (
69
+ < h2 className = "mb-8 mt-12 text-center tracking-normal" { ...props } />
70
70
)
71
71
72
72
const H4 = ( props : ChildOnlyProp ) => (
@@ -170,7 +170,14 @@ const StyledCardContainer = (props: ChildOnlyProp) => (
170
170
)
171
171
172
172
const StyledCard = ( { children, ...props } ) => (
173
- < Card flex = "1 1 464px" m = "4" p = "6" justifyContent = "flex-start" { ...props } >
173
+ < Card
174
+ flex = "1 1 464px"
175
+ m = "4"
176
+ p = "6"
177
+ justifyContent = "flex-start"
178
+ bg = "background.base"
179
+ { ...props }
180
+ >
174
181
{ children }
175
182
</ Card >
176
183
)
@@ -451,7 +458,9 @@ const BugBountiesPage = () => {
451
458
</ ClientRow >
452
459
< StyledGrayContainer id = "rules" >
453
460
< Content >
454
- < H2 > { t ( "page-upgrades-bug-bounty-validity" ) } </ H2 >
461
+ < H2 className = "mb-4 text-left" >
462
+ { t ( "page-upgrades-bug-bounty-validity" ) }
463
+ </ H2 >
455
464
< Text >
456
465
< Translation id = "page-bug-bounty:page-upgrades-bug-bounty-validity-desc" />
457
466
</ Text >
You can’t perform that action at this time.
0 commit comments