comment-modal.html•736 B
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Comment</title>
<link rel="stylesheet" href="./globals.css">
<style>
body {
margin: 0;
padding: 0;
font-family: var(--vscode-font-family), -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
font-size: var(--vscode-font-size, 13px);
line-height: 1.4;
color: var(--vscode-foreground);
background: var(--vscode-editor-background);
}
#root {
width: 100%;
height: 100vh;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./comment-modal.tsx"></script>
</body>
</html>