Skip to content

Commit

Permalink
fix dark mode styles leaking into light mode on tcp client interface …
Browse files Browse the repository at this point in the history
…target host input field
  • Loading branch information
liamcottle committed Dec 16, 2024
1 parent f843ae1 commit d829cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/components/interfaces/AddInterfacePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<!-- interface target host -->
<div v-if="newInterfaceType === 'TCPClientInterface'" class="mb-2">
<label class="block mb-2 text-sm font-medium text-gray-900 dark:text-zinc-100">Target Host</label>
<input type="text" placeholder="example.com" v-model="newInterfaceTargetHost" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 bg-zinc-950 dark:focus:border-blue-600 dark:text-zinc-100">
<input type="text" placeholder="example.com" v-model="newInterfaceTargetHost" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-zinc-900 dark:border-zinc-600 dark:text-white dark:focus:ring-blue-600 dark:focus:border-blue-600">
</div>

<!-- interface target port -->
Expand Down

0 comments on commit d829cb0

Please sign in to comment.