Commit 7d0fd03b authored by Ville Immonen's avatar Ville Immonen Committed by Dan Abramov
Browse files

Fix the right and bottom padding of the error overlay (#758)

parent 52bc72fb
Showing with 1 addition and 0 deletions
+1 -0
......@@ -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;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment