comment-modal.html•827 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>
<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>
<script type="module" crossorigin src="/comment-modal.js"></script>
<link rel="modulepreload" crossorigin href="/i18n.js">
<link rel="stylesheet" crossorigin href="/globals.css">
</head>
<body>
<div id="root"></div>
</body>
</html>