apply border-box globally

This commit is contained in:
Michael Shanks 2020-07-01 11:28:41 +01:00
parent 63cdbce9b6
commit 30f311eaea
2 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,9 @@ export default `<html>
height: 100%!important; height: 100%!important;
font-family: Roboto !important; font-family: Roboto !important;
} }
*, *:before, *:after {
box-sizing: border-box;
}
.lay-__screenslot__text { .lay-__screenslot__text {
width: 100%; width: 100%;
height: 100%; height: 100%;

View File

@ -17,6 +17,9 @@
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
*, *:before, *:after {
box-sizing: border-box;
}
</style> </style>
{{ each(options.stylesheets) }} {{ each(options.stylesheets) }}