Skip to content

Commit

Permalink
Fixes #939: Turn off transparency.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattRedBox committed May 10, 2020
1 parent 9565f71 commit 1b17c9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ export default {
return `${this.messageStatus} ${this.sideNavPropertiesForMain}`
},
errorColor () {
return 'rgba(245, 186, 186, 0.3)'
return 'rgba(245, 186, 186, 1)'
},
highlightColor () {
return 'rgba(181, 209, 255, 0.3)'
Expand Down
2 changes: 1 addition & 1 deletion test/features/support/page-objects/style.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

const searchColor = 'rgba(252,237,217,1)'
const errorColor = 'rgba(245, 186, 186, 0.3)'
const errorColor = 'rgba(245, 186, 186, 1)'

export {
searchColor,
Expand Down

0 comments on commit 1b17c9e

Please sign in to comment.