1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

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;
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) }}