mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-22 01:42:47 +00:00
feat: improvements
This commit is contained in:
22
src/routes/(app)/terminal/+page.svelte
Normal file
22
src/routes/(app)/terminal/+page.svelte
Normal file
@@ -0,0 +1,22 @@
|
||||
<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%;
|
||||
margin-block-end: 48px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user