-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1 KB
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
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<script>
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/interface-essential-crown.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Modulyzer</title>
<link rel="stylesheet" href="https://cdn.hugeicons.com/font/hgi-stroke-rounded.css" />
<style>
html, body, #app {
border: 0;
width: 100%;
height: 100%;
}
/* DataTable highlight selected row. Cannot style tr.contents in grid.
Instead, should either @apply neutral classes, or use Tailwinds parent targeting selectors,
or let component generate css for "complex selectors" based on class names */
tr.selected td {
background-color: #FFF;
color:#434;
}
</style>
</head>
<body>
<div id="app" class="bg-neutral-800"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>