33 lines
531 B
HTML
33 lines
531 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Theia — Secondary Window</title>
|
|
<style>
|
|
html, body {
|
|
overflow: hidden;
|
|
-ms-overflow-style: none;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
html,
|
|
head,
|
|
body,
|
|
.secondary-widget-root,
|
|
#widget-host {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="./secondary-window.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="widget-host"></div>
|
|
</body>
|
|
|
|
</html> |