updated css for repl2 demo

This commit is contained in:
Princiya Sequeira
2022-04-13 21:48:26 +02:00
parent 1966f1c8b7
commit fdfde89216
3 changed files with 15 additions and 11 deletions

View File

@@ -12,14 +12,16 @@
<script defer src="../build/pyscript.js"></script>
</head>
<body>
<div class="w-full h-full">
<div class="flex">
<div class="w-2/3"><py-repl id="my-repl" auto-generate="true" target="output"> </py-repl></div>
<div id="output" class="w-1/3"></div>
<body class="w-screen">
<div class="w-full h-full flex divide-x">
<div class="w-2/3 p-4">
<h1 class="text-4xl">REPL Demo</h1>
<py-repl id="my-repl" auto-generate="true" target="output"> </py-repl>
</div>
<div class="w-1/3 p-4">
<h1 class="text-4xl">Output</h1>
<div id="output"></div>
</div>
</div>
</body>
</html>