We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb152e commit 05bbc55Copy full SHA for 05bbc55
website/src/css/custom.css
@@ -26,3 +26,13 @@ main details {
26
main details summary {
27
margin-bottom: 1rem;
28
}
29
+
30
+.homePageBtns {
31
+ display: grid;
32
+ gap: 20px;
33
+}
34
+@media (min-width: 480px) {
35
+ .homePageBtns {
36
+ grid-template-columns: 1fr 1fr;
37
+ }
38
website/src/pages/index.js
@@ -19,13 +19,7 @@ export default function Home() {
19
<h1 className="hero__title">{siteConfig.title}</h1>
20
<p className="hero__subtitle">{siteConfig.tagline}</p>
21
</div>
22
- <div
23
- style={{
24
- display: "grid",
25
- gridTemplateColumns: "1fr 1fr",
- gridGap: "20px",
- }}
- >
+ <div className="homePageBtns">
<Link
to={useBaseUrl(siteConfig.customFields.firstDoc)}
className="button button--lg button--outline button--primary"
0 commit comments