- Free Database Credits for Open Source Heroes
-
- TiDB loves open-source. We contribute code, sponsor projects, and appreciate developers who do so.
-
- As a token of our appreciation, we're offering up to $2000 free TiDB Serverless credits to fuel open-source hero's next big idea.
-
-
- Log in with GitHub account to claim your credits.
-
- {
- onClickAction();
- }}
- >
- Claim Now
-
-
-
);
}
diff --git a/web/src/pages/open-source-heroes/_sections/1-how-it-works.tsx b/web/src/pages/open-source-heroes/_sections/1-how-it-works.tsx
index 95407b9d06..f55c98b21b 100644
--- a/web/src/pages/open-source-heroes/_sections/1-how-it-works.tsx
+++ b/web/src/pages/open-source-heroes/_sections/1-how-it-works.tsx
@@ -37,6 +37,14 @@ const ThisSectionContent = styled(SectionContent)`
justify-content: center;
width: max-content;
+ flex-direction: column;
+
+ ${({ theme }) => ({
+ [theme.breakpoints.up('md')]: css`
+ flex-direction: row;
+ `,
+ })}
+
h2 {
font-size: 32px;
line-height: 36px;
@@ -52,6 +60,13 @@ const Features = styled('div')`
padding: 0;
list-style: none;
width: max-content;
+ flex-direction: column;
+
+ ${({ theme }) => ({
+ [theme.breakpoints.up('md')]: css`
+ flex-direction: row;
+ `,
+ })}
`;
const FeatureSplitter = styled('li')`