14 lines
255 B
Plaintext
14 lines
255 B
Plaintext
/* Global reset for full screen web-view */
|
|
page {
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
box-sizing: border-box;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Ensure no system styling interferes */
|
|
* {
|
|
box-sizing: border-box;
|
|
} |