Skip to content
Snippets Groups Projects
Unverified Commit d3e7a0ab authored by Benoit Vinay's avatar Benoit Vinay Committed by GitHub
Browse files

box-sizing added to init.html CSS (#21916)

parent ff0a8001
Branches
Tags
No related merge requests found
......@@ -6,10 +6,19 @@
<style media="screen">
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Lato, 'Helvetica Neue', Helvetica, sans-serif;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
min-height: 100%;
position: relative;
}
progress[value] {
-webkit-appearance: none;
appearance: none;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment