make buttons on landing page wrap around
This commit is contained in:
parent
3d433bbc9e
commit
18824cc135
@ -16,12 +16,18 @@ function HomepageHeader() {
|
|||||||
{siteConfig.title}
|
{siteConfig.title}
|
||||||
</Heading>
|
</Heading>
|
||||||
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
||||||
<div className={styles.buttons}>
|
<div className={styles.buttons} style={{
|
||||||
|
display: 'flex',
|
||||||
|
flexWrap: 'wrap',
|
||||||
|
gap: '1rem',
|
||||||
|
gap: '3rem',
|
||||||
|
justifyContent: 'center',
|
||||||
|
}}>
|
||||||
<Link
|
<Link
|
||||||
className="button button--secondary button--lg"
|
className="button button--secondary button--lg"
|
||||||
to="/docs/wiki/about">
|
to="/docs/wiki/about">
|
||||||
About the server ⛏️
|
About the server ⛏️
|
||||||
</Link>   
|
</Link>
|
||||||
<Link
|
<Link
|
||||||
className="button button--secondary button--lg"
|
className="button button--secondary button--lg"
|
||||||
to="https://discord.gg/dTWRHbkfvV">
|
to="https://discord.gg/dTWRHbkfvV">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user