12 lines
142 B
CSS
12 lines
142 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#three-viewport {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|