Skip to content

Commit

Permalink
changing margin bottom to absolute "px" to be predictable
Browse files Browse the repository at this point in the history
  • Loading branch information
Restuta committed Mar 2, 2016
1 parent 5d21a03 commit 0aa886e
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 @@ -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 0aa886e

Please sign in to comment.