[less] Move `margin` and `padding` on `body` only

Both properties are needed for normalizing different browsers (`padding`
infamous on older Operas) and are only needed on `body`.

Change-Id: I661869ed43491824cbfe86dc36e39f97e29ccf8a
This commit is contained in:
Volker E 2020-06-11 17:03:07 -07:00
parent a2864cb5ef
commit 5691e4c7c4
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,9 @@
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
}