Skip to content

Commit

Permalink
fix react template css (#3477)
Browse files Browse the repository at this point in the history
changelog
  • Loading branch information
atterpac committed May 13, 2024
1 parent 71b2edc commit 9c4b412
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
1 change: 1 addition & 0 deletions mkdocs-website/docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fixed react template css to show footer by [atterpac](https://github.com/atterpac) in [#3477](https://github.com/wailsapp/wails/pull/3477)
- Fixed zombie processes when working in devmode by updating to latest refresh by [Atterpac](https://github.com/atterpac) in [#3320](https://github.com/wailsapp/wails/pull/3320).
- Fixed appimage webkit file sourcing by [Atterpac](https://github.com/atterpac) in [#3306](https://github.com/wailsapp/wails/pull/3306).
- Fixed Doctor apt package verify by [Atterpac](https://github.com/Atterpac) in [#2972](https://github.com/wailsapp/wails/pull/2972).
Expand Down
3 changes: 1 addition & 2 deletions v3/internal/templates/react-swc-ts/frontend/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ h1 {
margin-top: 1rem;
align-content: center;
text-align: center;
color: rgba(255, 255, 255, 0.67);
}

@media (prefers-color-scheme: light) {
Expand Down Expand Up @@ -158,4 +157,4 @@ h1 {
.input-box .input:focus {
border: none;
background-color: rgba(255, 255, 255, 1);
}
}
3 changes: 1 addition & 2 deletions v3/internal/templates/react-swc/frontend/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ h1 {
margin-top: 1rem;
align-content: center;
text-align: center;
color: rgba(255, 255, 255, 0.67);
}

@media (prefers-color-scheme: light) {
Expand Down Expand Up @@ -158,4 +157,4 @@ h1 {
.input-box .input:focus {
border: none;
background-color: rgba(255, 255, 255, 1);
}
}
3 changes: 1 addition & 2 deletions v3/internal/templates/react-ts/frontend/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ h1 {
margin-top: 1rem;
align-content: center;
text-align: center;
color: rgba(255, 255, 255, 0.67);
}

@media (prefers-color-scheme: light) {
Expand Down Expand Up @@ -158,4 +157,4 @@ h1 {
.input-box .input:focus {
border: none;
background-color: rgba(255, 255, 255, 1);
}
}
3 changes: 1 addition & 2 deletions v3/internal/templates/react/frontend/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ h1 {
margin-top: 1rem;
align-content: center;
text-align: center;
color: rgba(255, 255, 255, 0.67);
}

@media (prefers-color-scheme: light) {
Expand Down Expand Up @@ -158,4 +157,4 @@ h1 {
.input-box .input:focus {
border: none;
background-color: rgba(255, 255, 255, 1);
}
}

0 comments on commit 9c4b412

Please sign in to comment.