File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed
components/sections/homepage Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ export default function MainSection(): ReactElement {
52
52
</ Link >
53
53
< VideoPopup />
54
54
</ div >
55
- < div className = "flex flex-col md:flex-row 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" >
56
56
{ cards . map ( ( card , i ) => (
57
- < div key = { `numbered-card-${ i } ` } className = "w-full lg:max-w-.5xs divide-dotted-custom " >
57
+ < div key = { `numbered-card-${ i } ` } className = "w-full lg:max-w-.5xs pt-5 md:pt-0 " >
58
58
< NumberedCard index = { i + 1 } title = { t ( card . title ) as string } text = { t ( card . body ) as string } />
59
59
</ div >
60
60
) ) }
Original file line number Diff line number Diff line change @@ -459,15 +459,6 @@ div {
459
459
.markdown-content h2 {
460
460
font-size : 1.25rem !important ;
461
461
}
462
- .divide-dotted-custom : not (: first-child ): before {
463
- content : "" ;
464
- display : block;
465
- height : 0.25rem ;
466
- margin-bottom : 1.25rem ;
467
- background-image : linear-gradient (to right, # E5E7EB 25% , transparent 20% );
468
- background-size : 0.625rem 0.313rem ;
469
- background-repeat : repeat-x;
470
- }
471
462
472
463
}
473
464
You can’t perform that action at this time.
0 commit comments