feat: improve connection ux

[deploy]
This commit is contained in:
2023-07-23 21:29:54 +02:00
parent 634073f10d
commit 5cdf969c6d
8 changed files with 81 additions and 261 deletions

View File

@@ -0,0 +1,21 @@
<script>
import Terminal from "$lib/components/Terminal.svelte"
</script>
<section class="terminal">
<Terminal />
</section>
<style lang="scss">
section {
contain: size;
overflow: hidden;
display: flex;
flex-direction: column;
flex-grow: 1;
gap: 16px;
width: calc(min(100%, 28cm));
height: 100%;
}
</style>