chore: update style issues from feedback

This commit is contained in:
Steven
2023-03-27 23:29:58 +08:00
parent ad56250e52
commit 9240b395e8
9 changed files with 27 additions and 21 deletions

View File

@ -96,19 +96,19 @@ const CreateConnectionModal = (props: Props) => {
/>
</div>
<div className="w-full flex flex-col">
<label className="block text-sm font-medium text-gray-700 mb-1">Admin Username</label>
<label className="block text-sm font-medium text-gray-700 mb-1">Username</label>
<input
type="text"
placeholder="Connect admin username"
placeholder="Connect username"
className="input input-bordered w-full"
onChange={(e) => setPartialConnection({ username: e.target.value })}
/>
</div>
<div className="w-full flex flex-col">
<label className="block text-sm font-medium text-gray-700 mb-1">Admin Password</label>
<label className="block text-sm font-medium text-gray-700 mb-1">Password</label>
<input
type="text"
placeholder="Connect admin password"
placeholder="Connect password"
className="input input-bordered w-full"
onChange={(e) => setPartialConnection({ password: e.target.value })}
/>