This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/server/static/dev.html
2016-07-15 00:55:45 -07:00

33 lines
610 B
HTML

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