This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit b32dd2b authored and committed Apr 14, 2023
1 parent 65d8ae7 commit b32dd2b Copy full SHA for b32dd2b
File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -36,20 +36,20 @@ export function SectionGridLayout(props: SectionGridLayoutProps): JSX.Element {
36
36
< Container className = "flex flex-col justify-between lg:flex-row 2xl:max-w-[1920px] 2xl:mx-[300px]" >
37
37
< div className = "flex lg:w-[551px] relative z-10" >
38
38
< div
39
- className = "w-full flex flex-col space-y-5 md:space-y-5 lg:space-y-5 "
39
+ className = "w-full flex flex-col"
40
40
data-testid = "masternodesBenefits.text"
41
41
>
42
- { sectionTitle !== undefined ? (
43
- < SectionTitle text = { sectionTitle } />
44
- ) : null }
42
+ { sectionTitle !== undefined && (
43
+ < SectionTitle text = { sectionTitle } customStyle = "w-fit mb-5" />
44
+ ) }
45
45
< h2
46
- className = "text-[40px] leading-[44px] tracking-[-0.02em] lg:text-6xl lg:leading-[72px] lg:tracking-normal"
46
+ className = "text-[40px] mb-5 leading-[44px] tracking-[-0.02em] lg:text-6xl lg:leading-[72px] lg:tracking-normal"
47
47
data-testid = "title"
48
48
>
49
49
{ title }
50
50
</ h2 >
51
51
< div
52
- className = "text-dark-700 lg:text-xl font-desc md:w-9/12 lg:w-10/12"
52
+ className = "text-dark-700 mb-8 lg:text-xl font-desc md:w-9/12 lg:w-10/12"
53
53
data-testid = "desc"
54
54
>
55
55
{ description }
@@ -64,7 +64,7 @@ export function SectionGridLayout(props: SectionGridLayoutProps): JSX.Element {
64
64
) }
65
65
{ isSecondaryButton === true && href !== undefined && (
66
66
< SecondaryButton
67
- className = "text-sm py-3 lg:py-4 md: px-14 w-full md:w-fit lg:text-base !mt-[32px] "
67
+ className = "text-sm py-3 lg:py-4 px-14 w-full md:w-fit lg:text-base"
68
68
text = { buttonText }
69
69
href = { href }
70
70
/>
You can’t perform that action at this time.
0 commit comments