31 lines
600 B
HTML
31 lines
600 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
|
|
<title>Joyent CoPilot</title>
|
|
<style>
|
|
.CodeMirror, .ReactCodeMirror {
|
|
height: 100% !important;
|
|
}
|
|
|
|
.CodeMirror {
|
|
border: solid 1px #d8d8d8;
|
|
}
|
|
|
|
html, body, #root {
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|