Skip to content

Commit

Permalink
Fix the right and bottom padding of the error overlay (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
fson authored and gaearon committed Sep 26, 2016
1 parent 52bc72f commit 7d0fd03
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/react-dev-utils/webpackHotDevClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ function addOverlayDivTo(iframe) {
var div = iframe.contentDocument.createElement('div');
div.id = 'react-dev-utils-webpack-hot-dev-client-overlay-div';
div.style.position = 'fixed';
div.style.boxSizing = 'border-box';
div.style.left = 0;
div.style.top = 0;
div.style.right = 0;
Expand Down

0 comments on commit 7d0fd03

Please sign in to comment.