Skip to content

Commit

Permalink
Merge pull request #83 from Restuta/patch-1
Browse files Browse the repository at this point in the history
Remvoing REM use from "lineHeight" property
  • Loading branch information
glenjamin committed Mar 2, 2016
2 parents 6b477dc + 0aa886e commit 3671d2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client-overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var styles = {
display: 'none',
background: 'rgba(0,0,0,0.85)',
color: '#E8E8E8',
lineHeight: '1.2rem',
lineHeight: '1.2',
whiteSpace: 'pre',
fontFamily: 'Menlo, Consolas, monospace',
fontSize: '13px',
Expand Down Expand Up @@ -51,7 +51,7 @@ function showProblems(type, lines) {
lines.forEach(function(msg) {
msg = ansiHTML(entities.encode(msg));
var div = document.createElement('div');
div.style.marginBottom = '2rem';
div.style.marginBottom = '26px';
div.innerHTML = problemType(type) + ' in ' + msg;
clientOverlay.appendChild(div);
});
Expand Down

0 comments on commit 3671d2a

Please sign in to comment.