mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
feat: improve connection ux
[deploy]
This commit is contained in:
21
src/routes/terminal/+page.svelte
Normal file
21
src/routes/terminal/+page.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user