File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export const GuideCard = ({ guide }: Props) => {
8
8
const authorString = `@${ authors . join ( ', @' ) } `
9
9
10
10
return (
11
- < div className = "col-lg-4 col-12 mb-3 " >
11
+ < div className = "col-lg-4 col-12 mb-4 " >
12
12
< a
13
13
className = "Box color-shadow-medium height-full d-block hover-shadow-large no-underline color-text-primary p-5"
14
14
href = { guide . href }
Original file line number Diff line number Diff line change @@ -37,38 +37,38 @@ export const ProductLanding = () => {
37
37
</ LandingSection >
38
38
39
39
{ productCodeExamples . length > 0 && (
40
- < LandingSection title = { t ( 'code_examples' ) } className = "my-6" >
40
+ < LandingSection title = { t ( 'code_examples' ) } className = "my-6 pb-6 " >
41
41
< CodeExamples />
42
42
</ LandingSection >
43
43
) }
44
44
45
45
{ productCommunityExamples . length > 0 && (
46
- < LandingSection title = { t ( 'communities_using_discussions' ) } className = "my-6" >
46
+ < LandingSection title = { t ( 'communities_using_discussions' ) } className = "my-6 pb-6 " >
47
47
< CommunityExamples />
48
48
</ LandingSection >
49
49
) }
50
50
51
51
{ productUserExamples . length > 0 && (
52
- < LandingSection title = { t ( 'sponsor_community' ) } className = "my-6" >
52
+ < LandingSection title = { t ( 'sponsor_community' ) } className = "my-6 pb-6 " >
53
53
< SponsorsExamples />
54
54
</ LandingSection >
55
55
) }
56
56
57
57
{ router . query . productId === 'admin' && isEnterpriseServer && (
58
- < LandingSection title = { t ( 'supported_releases' ) } className = "my-6" >
58
+ < LandingSection title = { t ( 'supported_releases' ) } className = "my-6 pb-6 " >
59
59
< ProductReleases />
60
60
</ LandingSection >
61
61
) }
62
62
63
63
{ guideCards . length > 0 && (
64
- < div className = "color-bg-tertiary py-6 my-8 " >
64
+ < div className = "color-bg-tertiary py-6" >
65
65
< LandingSection title = { t ( 'guides' ) } className = "my-6" >
66
66
< GuideCards />
67
67
</ LandingSection >
68
68
</ div >
69
69
) }
70
70
71
- < LandingSection sectionLink = "all-docs" title = { `All ${ shortTitle } docs` } >
71
+ < LandingSection sectionLink = "all-docs" title = { `All ${ shortTitle } docs` } className = "pt-9" >
72
72
< ProductArticlesList />
73
73
</ LandingSection >
74
74
</ DefaultLayout >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export function ProductReleases() {
24
24
const firstPreviousVersion = `enterprise-server@${ release . firstPreviousRelease } `
25
25
const secondPreviousVersion = `enterprise-server@${ release . secondPreviousRelease } `
26
26
return (
27
- < div key = { releaseNumber } className = "col-lg-4 col-12 mb-3 " >
27
+ < div key = { releaseNumber } className = "col-lg-4 col-12 mb-4 " >
28
28
< div className = "Box color-shadow-medium height-full d-block hover-shadow-large no-underline color-text-primary p-5" >
29
29
< h2 > { allVersions [ releaseVersion ] . versionTitle } </ h2 >
30
30
< p className = "mt-2 mb-4 color-text-tertiary" >
You can’t perform that action at this time.
0 commit comments