We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e01d7c7 commit 0162c32Copy full SHA for 0162c32
1 file changed
src/components/CommandLineInterface.vue
@@ -1,4 +1,5 @@
1
<template>
2
+ <div class="cli-container">
3
<vue-command :commands="commands" :hide-buttons="true" :show-help="true" :cursor-position="0" :is-fullscreen="true">
4
<template #title>Command Line Interface v0.1 -- type "help" for instructions</template>
5
<template #prompt>
@@ -13,6 +14,7 @@
13
14
<template #invert>true</template>
15
<template #font></template>
16
</vue-command>
17
+</div>
18
</template>
19
20
<script lang="ts">
@@ -35,3 +37,10 @@ export default {
35
37
};
36
38
</script>
39
40
+<style scoped>
41
+.cli-container {
42
+ /* Adjust the border-radius as needed */
43
+ border-radius: 10px; /* This will give rounded corners to the container */
44
+ overflow: hidden; /* Ensures that the child elements adhere to the container's border radius */
45
+}
46
+</style>
0 commit comments