Skip to content

Commit

Permalink
Merge pull request #518 from Stockless/docs-develop
Browse files Browse the repository at this point in the history
Limited size of large assets in light mode
cncastillo authored Dec 12, 2024
2 parents 146510f + 7cb2584 commit b113ee8
Showing 2 changed files with 7 additions and 10 deletions.
10 changes: 4 additions & 6 deletions docs/src/assets/center-images.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: none;
height: auto;
}
display: block; /* Ensures the image behaves as a block element */
margin-left: auto;
margin-right: auto;
}
7 changes: 3 additions & 4 deletions docs/src/how-to/5-contribute-to-koma.md
Original file line number Diff line number Diff line change
@@ -99,7 +99,6 @@ To create this new branch, go to **Source Control** -> **...** -> **Branch** ->
```
This will open a menu to select an starting point for your branch. Select `my-fork/master` as your starting point, and give it the name `my-new-feature`.
![](../assets/create-branch-step1.png)
![](../assets/create-branch-step2.png)
@@ -114,7 +113,7 @@ To do this, in VScode go to the Source Control panel in the Activity Bar.
Assuming you are currently in your `my-new-feature` branch, the Source Control panel should show your changes to the project and the option to create a commit message.
```@raw html
<img width="60%" src="../../assets/how-to-commit.png">
<img width="40%" src="../../assets/how-to-commit.png">
```
If you hove over the `Changes` tab, it should show a `+` icon. Press it to stage all changes in the project.
@@ -131,15 +130,15 @@ If you want to send your commited new version of the repository, you can create
To create this pull request, in VScode, go to the `GitHub Pull Request` panel in the Activity Bar and hove over the `Pull request` tab. This should show a Create pull request icon to press.
```@raw html
<img width="60%" src="../../assets/create-pull-request.png">
<img width="50%" src="../../assets/create-pull-request.png">
```
In the `Create` tab that appears, select `JuliaHealth/master` as the base and the branch you are working with to merge.
To finish your pull request, give it a name with a clear mention of the subject of the contribution you made, and a description that explains the issue or feature you are addresing in your branch, and press the Create button.
```@raw html
<img width="60%" src="../../assets/fill-pull-request.png">
<img width="50%" src="../../assets/fill-pull-request.png">
```
>💡 **Tips for a successful Pull Request:**
> - Try to address one issue or feature per pull request to make it easier for reviewers.

0 comments on commit b113ee8

Please sign in to comment.