This is an automated email from the ASF dual-hosted git repository. yumeng pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git
commit da6a6663318c0d1e7df7b5ae2a9d790806be1495 Author: ZiyuTao <[email protected]> AuthorDate: Mon Sep 12 01:35:30 2022 +0800 fix: button --- src/components/Sections/Discover.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Sections/Discover.tsx b/src/components/Sections/Discover.tsx index 3fa6b4269..f28598147 100644 --- a/src/components/Sections/Discover.tsx +++ b/src/components/Sections/Discover.tsx @@ -5,13 +5,13 @@ import BG from "@site/static/img/Homepage/discover.png"; export function Discover() { return (<div className="flex flex-col items-center relative h-[324px] font-inter bg-primary-100"> - <img src={BG} alt='' className="absolute bottom-[0px]" /> + <img src={BG} alt='' className="absolute bottom-[0px] z-0" /> <div className="font-medium text-primary-800 text-[32px] leading-[48px] mt-[72px]">Discover more engineering insights with</div> <div className="font-semibold text-primary-500 text-[40px] leading-[60px] mt-1 mb-3">Apache DevLake (Incubating)</div> <Link - className="primary-button" + className="primary-button z-10" to="https://devlake.apache.org/docs/GettingStarted" > Getting Started
