Skip to content

Commit 1485582

Browse files
committed
Fix learn more link width
1 parent 8984c92 commit 1485582

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

src/components/community-stats/SdvInNumbersSection.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,16 @@ export default function SdvInNumbersSection() {
8989
<h1 className="heading-600-lg pb-6 text-center md:leading-lg">
9090
The Synthetic Data Vault in numbers
9191
</h1>
92-
<a
93-
href="https://docs.sdv.dev/sdv"
94-
target="_blank"
95-
rel="noreferrer"
96-
className="text-lg text-blue-600 hover:text-midnight-950 font-semibold duration-200 leading-none text-center cursor-pointer pt-1.5 pb-12"
97-
>
98-
Learn more
99-
</a>
92+
<div className="text-center pt-1.5 pb-12">
93+
<a
94+
href="https://docs.sdv.dev/sdv"
95+
target="_blank"
96+
rel="noreferrer"
97+
className="text-lg text-blue-600 hover:text-midnight-950 font-semibold duration-200 leading-none cursor-pointer"
98+
>
99+
Learn more
100+
</a>
101+
</div>
100102
<div className="flex gap-2.5 lg:gap-9 border-b border-b-midnight-200 mb-6">
101103
{tabs.map((t) => (
102104
<Tab

src/components/community-stats/SdvOpenCoreSection.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,16 @@ export default function SdvOpenCoreSection() {
7070
<h1 className="heading-600-lg pb-6 text-center md:leading-lg">
7171
SDV: An open core software for tabular Generative AI
7272
</h1>
73-
<a
74-
href={activeSlide.link}
75-
target="_blank"
76-
rel="noreferrer"
77-
className="text-lg text-blue-600 hover:text-midnight-950 font-semibold duration-200 leading-none text-center cursor-pointer pt-1.5"
78-
>
79-
Learn more
80-
</a>
73+
<div className="text-center pt-1.5">
74+
<a
75+
href={activeSlide.link}
76+
target="_blank"
77+
rel="noreferrer"
78+
className="text-lg text-blue-600 hover:text-midnight-950 font-semibold duration-200 leading-none cursor-pointer"
79+
>
80+
Learn more
81+
</a>
82+
</div>
8183
<div onTouchStart={handleTouchStart} onTouchEnd={handleTouchEnd}>
8284
<img
8385
src={activeSlide.imgSrc}

0 commit comments

Comments
 (0)