28 lines
417 B
HTML
28 lines
417 B
HTML
<!doctype html>
|
|
<meta charset="utf-8" />
|
|
<style>
|
|
:root,
|
|
input,
|
|
textarea {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
margin: 0 auto;
|
|
width: fit-content;
|
|
padding: 1em;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
overflow-y: scroll;
|
|
white-space: pre-wrap;
|
|
}
|
|
</style>
|
|
|
|
<main>
|
|
<textarea cols="80" rows="20"></textarea>
|
|
</main>
|
|
|
|
<script type="module" src="/dist/main.js"></script>
|