Skip to content

Commit

Permalink
Made error overlay translucent. (#1097)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbogdan authored and shellscape committed Sep 20, 2017
1 parent 3e24ac4 commit bad7ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function addOverlayDivTo(iframe) {
div.style.bottom = 0;
div.style.width = '100vw';
div.style.height = '100vh';
div.style.backgroundColor = 'black';
div.style.backgroundColor = 'rgba(0, 0, 0, 0.85)';
div.style.color = '#E8E8E8';
div.style.fontFamily = 'Menlo, Consolas, monospace';
div.style.fontSize = 'large';
Expand Down

0 comments on commit bad7ed5

Please sign in to comment.