1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

apply border-box globally

This commit is contained in:
Michael Shanks 2020-07-01 11:28:41 +01:00
parent 90cb16bac0
commit 46c8c558a0
2 changed files with 6 additions and 0 deletions

View file

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

View file

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