track/web/index.html

26 lines
598 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<style>
html,body, #root {height: 100%; margin: 0; padding: 0;}
body {overflow: hidden;}
#app {display: flex;}
.container {
display: grid;
width: 100%;
grid-template-columns: 2fr 1fr;
grid-template-rows: 1fr;
gap: 0px 0px;
grid-template-areas: ". .";
}
.list {
height: 100vh;
overflow-y: scroll;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/dist/index.js"></script>
</body>
</html>