playground/index.html (51 lines of code) (raw):
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Elastic-Charts Playground</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<style>
html,
body {
background: white !important;
width: 100%;
height: 100%;
overflow: hidden;
}
.chart {
background: white;
/*display: inline-block;
position: relative;
*/
width: 100%;
height: 100%;
overflow: auto;
}
.testing {
background: aquamarine;
position: relative;
width: 100%;
overflow: auto;
}
.page {
padding: 10px;
width: 100%;
height: 100%;
}
#root {
height: 100%;
wwidth: 100%;
}
label {
display: block;
}
</style>
</head>
<body>
<div class="page">
<div id="root"></div>
</div>
<script src="bundle.js" type="text/javascript"></script>
</body>
</html>