Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,18 @@ html[data-theme='dark'] {
.wrapper {
margin: 0 auto;
max-width: 1100px;
padding: 0 20px;
padding: 0 70px;
margin-top: 30px;
}

.help-heading-1 {
font-size: 3em;
margin-bottom: 30px;
}

.help-heading-2 {
font-size: 2.5em;
margin: 30px 0;
}

.center {
Expand Down Expand Up @@ -121,16 +132,12 @@ html[data-theme='dark'] {
padding-bottom: 40px;
padding-top: 40px;
}

.wrapper {
max-width: 1400px;
}
}

.mainContainer {
flex: 1 1 0%;
max-width: 100%;
padding: 40px 0;
margin-bottom: 50px;
}

.mainContainer .wrapper {
Expand Down Expand Up @@ -396,6 +403,9 @@ html[data-theme='dark'] {
}

@media only screen and (max-width: 735px) {
.wrapper {
padding: 0 20px;
}
.showcaseSection .logos img {
max-height: 64px;
padding: 20px;
Expand Down
6 changes: 3 additions & 3 deletions src/pages/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default function Help(props) {
<div className="mainContainer documentContainer postContainer helpContainer">
<div>
<header>
<h1>Need help?</h1>
<h1 className="help-heading-1">Need help?</h1>
</header>
<GridBlock
contents={supportLinks.slice(0, 3)}
Expand All @@ -74,7 +74,7 @@ export default function Help(props) {
align="left"
/>
<section>
<h2>Buy a Course</h2>
<h2 className="help-heading-2">Buy a course</h2>
<p>
Learn how to test JavaScript with{' '}
<ExternalLink href="https://kentcdodds.com">
Expand All @@ -96,7 +96,7 @@ export default function Help(props) {
</div>
</section>
<header className="postHeader">
<h1>Want to help?</h1>
<h2 className="help-heading-2">Want to help?</h2>
</header>
<p>
Thanks! The Testing Library maintainers are happy to maintain this
Expand Down