File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ interface NumberedProps {
27
27
*/
28
28
export default function Numbered ( { index = 1 , title = "" , text = "" } : NumberedProps ) : ReactElement {
29
29
return (
30
- < div >
31
- < div className = "hidden xl:block md: block" >
32
- < div className = "w-14 h-14 border border-solid border-gray-400 text-gray-400 font-medium rounded-full flex items-center justify-center" > { index } </ div >
30
+ < div className = "flex items-center md:flex-col md:items-start gap-2.5" >
31
+ < div className = "block" >
32
+ < div className = "w-9 h-9 md:w- 14 md: h-14 border border-solid border-gray-400 text-gray-400 font-medium rounded-full flex items-center justify-center" > { index } </ div >
33
33
</ div >
34
- < div className = "mt-2.5" >
34
+ < div >
35
35
< span className = "font-medium" > { title } </ span > < span > { text } </ span >
36
36
</ div >
37
37
</ div >
Original file line number Diff line number Diff line change @@ -41,9 +41,7 @@ export default function MainSection(): ReactElement {
41
41
< Section type = "default" padding = "p-0" >
42
42
< div className = "w-full lg:py-24 pt-24 pb-8" >
43
43
< h1 className = "lg:text-8xl md:text-6xl text-5xl leading-none tracking-tighter" > { t ( "page.index.main.title" ) } </ h1 >
44
- < p className = "lg:text-8xl md:text-6xl text-2xl py-2 lg:py-0 md:py-0 sm:py-0 text-black lg:text-gray-400 md:text-gray-400 sm:text-gray-400 tracking-tighter leading-none" >
45
- { t ( "page.index.main.subtitle" ) }
46
- </ p >
44
+ < p className = "lg:text-8xl md:text-6xl text-4.5xl py-2 lg:py-0 md:py-0 sm:py-0 text-gray-400 tracking-tighter leading-none" > { t ( "page.index.main.subtitle" ) } </ p >
47
45
</ div >
48
46
< div className = "flex justify-between" >
49
47
< div className = "w-full max-w-xs hidden lg:block" >
@@ -54,7 +52,7 @@ export default function MainSection(): ReactElement {
54
52
</ Link >
55
53
< VideoPopup />
56
54
</ div >
57
- < div className = "flex flex-col md:flex-row md:divide-y-0 divide-y divide-gray-900 divide-dotted space-y-5 md:space-y-0 space-x-0 md:space-x-5 justify-end" >
55
+ < div className = "flex flex-col md:flex-row md:divide-y-0 divide-y-2 divide-dotted divide-gray-200 space-y-5 md:space-y-0 space-x-0 md:space-x-5 justify-end" >
58
56
{ cards . map ( ( card , i ) => (
59
57
< div key = { `numbered-card-${ i } ` } className = "w-full lg:max-w-.5xs pt-5 md:pt-0" >
60
58
< NumberedCard index = { i + 1 } title = { t ( card . title ) as string } text = { t ( card . body ) as string } />
Original file line number Diff line number Diff line change @@ -447,6 +447,7 @@ div {
447
447
.markdown-content h2 {
448
448
font-size : 1.25rem !important ;
449
449
}
450
+
450
451
}
451
452
452
453
.web3modal-modal-lightbox {
You can’t perform that action at this time.
0 commit comments