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
Tom Moor 39a61d8559 Upgrade Dependencies (#873)
* Loading placeholder

* Upgrade dependencies, reduce warnings

* 👕

* Remove more unused deps

* Bump RME
2019-01-21 11:06:44 -08:00

40 lines
711 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Outline</title>
<link href="/static/styles.css" rel="stylesheet">
<style>
body,
html {
margin: 0;
padding: 0;
}
body {
display: flex;
width: 100%;
height: 100%;
}
#root {
flex: 1;
min-height: 100vh;
}
#sidebar-placeholder {
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: 280px;
background: #F4F7FA;
}
</style>
</head>
<body>
<div id="root">
<div id="sidebar-placeholder"></div>
</div>
<script src="/static/bundle.js"></script>
</body>
</html>