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 fcf7e76 commit d20053dCopy full SHA for d20053d
docs/src/pages/index.module.css
@@ -12,6 +12,12 @@
12
flex-direction: column;
13
}
14
15
+.heroContainer {
16
+ display: flex;
17
+ flex-direction: column;
18
+ align-items: center;
19
+}
20
+
21
.heroAds {
22
padding-top: 2rem;
23
min-height: 196px;
docs/src/pages/index.tsx
@@ -14,7 +14,7 @@ function HomepageHeader() {
const { siteConfig } = useDocusaurusContext()
return (
<header className={clsx('hero hero--primary', styles.heroBanner)}>
- <div className="container">
+ <div className={clsx('container', styles.heroContainer)}>
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__logo">
<img src="img/logo.svg" alt="Happy face with a tooltip saying 'Hello I'm a tooltip'" />
0 commit comments