Remove margin from html and body

This commit is contained in:
Nick Krichevsky 2018-06-28 19:28:51 -04:00
parent 228ed191ee
commit 16e4d413ee

View file

@ -1,8 +1,11 @@
html {
width: 400px;
height: 600px;
margin: 0;
//Fixes scrollbar margin issue by putting it underneath the srollbar
//See https://bugs.chromium.org/p/chromium/issues/detail?id=821143
overflow: overlay;
}
html, body {
margin: 0;
}