apply border-box globally
This commit is contained in:
parent
90cb16bac0
commit
46c8c558a0
|
@ -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%;
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
*, *:before, *:after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
</style>
|
||||
|
||||
{{ each(options.stylesheets) }}
|
||||
|
|
Loading…
Reference in New Issue