Skip to content

Commit

Permalink
chore: fix layout
Browse files Browse the repository at this point in the history
  • Loading branch information
darlanalves committed May 11, 2024
1 parent bcce6ca commit 48f7c10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Console.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<PageLayout :title="'Available Commands'">
<form class="flex items-center space-x-2" @submit.prevent="onRun()">
<form class="flex items-center" @submit.prevent="onRun()">
<input
class="font-mono text-sm flex-grow w-full p-2 block rounded-md border border-gray-300 shadow-sm"
class="font-mono text-sm flex-grow w-full p-2 block rounded-l-md border border-gray-300 shadow-sm"
v-model="commandInput"
/>
<button class="p-2 border border-gray-300 shadow-sm">Run</button>
<button class="p-2 border border-gray-300 shadow-sm rounded-r-md border-l-0">Run</button>
</form>

<Logs :logs="logs" class="my-4" />
Expand Down

0 comments on commit 48f7c10

Please sign in to comment.