Article padding improvement (#1739)

* Curb excessive article padding

* Fix blog article oversight
This commit is contained in:
Michael Matloka
2021-08-11 12:18:02 +02:00
committed by GitHub
parent ea9fa5a729
commit 0103a0d732
2 changed files with 2 additions and 2 deletions

View File

@@ -329,7 +329,7 @@ jobs:
```
Hint: Since Docker Hub has [removed free autobuilds](https://www.docker.com/blog/changes-to-docker-hub-autobuilds/), but GitHub Actions are still free for public repositories (and with limits for private ones), you can build Docker images and then push them to Docker Hub very similar to the above workflow.
Just add the login action [`docker/login-action`](https://github.com/marketplace/actions/docker-login) at the beginning, set `push` to `false`, _et voila_, now you are pushing.
Just add the login action [`docker/login-action`](https://github.com/marketplace/actions/docker-login) at the beginning, set `push` to `true`, _et voila_, now you are pushing.
### Putting releases out

View File

@@ -72,7 +72,7 @@ function Template(props) {
<h1 align="center">{frontmatter.title}</h1>
)}
<div
className="docsPagesContent rounded md:rounded-lg px-4 pb-8 md:pb-16"
className="docsPagesContent rounded md:rounded-lg md:pb-8"
dangerouslySetInnerHTML={{ __html: html }}
/>
</div>