blob: 75edeb17986bc1422273f010ea41ce326a737c17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!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>
|