Skip to content

Commit

Permalink
Add to CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bouveng committed Jul 23, 2021
1 parent eec0853 commit 9a8ddd4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
1. [SOUND] Improved engine startup, idle sounds, and cabin wind - @hotshotp (Boris)
1. [MODEL] Swap EFIS WPT and VOR D buttons - @tracernz (Mike)
1. [MODEL] Fix no-smoking/no-PED switch animation - @tracernz (Mike)
1. [DISPLAYS] Add pixelated screens - @bouveng (Johan Bouveng)

## 0.6.0
1. [CDU] Added WIND page - @tyler58546 (tyler58546)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ text {
background-size: 2px;
opacity: 0.75;
/* subtle tint and edge bleed */
background-color:rgba(0, 0, 255, 0.025);
background-color: rgba(0, 0, 255, 0.025);
box-shadow: inset 0px 0px 30px 10px rgba(0, 75, 255, 0.04);
border-radius: 30px;
/*
Expand Down
2 changes: 1 addition & 1 deletion src/instruments/src/Common/pixels.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M0 0 V10 Z H10 Z' stroke='%23000' stroke-width='#{$spacing}' fill='none'/%3E%3C/svg%3E");
@if $bleed {
/* subtle tint, bleed and edge bleed */
background-color:rgba(0, 0, 255, 0.025);
background-color: rgba(0, 0, 255, 0.025);
box-shadow: inset 0px 0px 30px 10px rgba(0, 75, 255, 0.04);
}
}
Expand Down

0 comments on commit 9a8ddd4

Please sign in to comment.