22 lines
412 B
HTML
22 lines
412 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Process Manager</title>
|
|
<link rel="stylesheet" href="vendor/photon.css">
|
|
<style>
|
|
.process-table {
|
|
/*margin: 10px;*/
|
|
}
|
|
.process-table-container {
|
|
overflow-x: scroll;
|
|
flex: 2;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app" class="window"></div>
|
|
<script src="dist/ui-bundle.js"></script>
|
|
</body>
|
|
</html>
|