34 lines
637 B
HTML
34 lines
637 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Atlas</title>
|
|
<link href="/static/styles.css" rel="stylesheet"></head>
|
|
<style>
|
|
#root {
|
|
flex: 1;
|
|
height: 100%;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex: 1;
|
|
height: 42px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style='display: flex; width: 100%; height: 100%;'>
|
|
<div id="root">
|
|
<div class="container">
|
|
<div class="header"></div>
|
|
</div>
|
|
</div>
|
|
<script src="/static/bundle.js"></script>
|
|
</body>
|
|
</html>
|