Skip to main content
Module

x/aleph/examples/monaco-editor/index.html

The Full-stack Framework in Deno.
Go to Latest
File
<!DOCTYPE html><html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> * { margin: 0; padding: 0; border: none; outline: none; font: inherit; font-size: 100%; vertical-align: baseline; background: transparent; } html, body { height: 100%; overflow: hidden; } #root { box-sizing: border-box; position: relative; width: 100vw; height: 100vh; padding: 50px; } #root .editor { width: 100%; height: 100%; } </style></head>
<body> <div id="root"> <div class="editor"><span style="color:darkgray;">loading...</span></div> </div> <script type="module" src="./main.ts"></script></body>
</html>