mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-11 10:38:11 +08:00
33 lines
815 B
HTML
33 lines
815 B
HTML
<!doctype html>
|
|
<html style="display: flex">
|
|
<head>
|
|
<meta charset="utf8">
|
|
<style>
|
|
html {
|
|
display: flex;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
flex: 1;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
#container {
|
|
display: flex;
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- main react mount point -->
|
|
<div id="container">Unable to find React on the page.</div>
|
|
<script src="./build/panel.js"></script>
|
|
</body>
|
|
</html>
|