mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 17:53:21 +08:00
chore: update style issues from feedback
This commit is contained in:
@ -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 })}
|
||||
/>
|
||||
|
Reference in New Issue
Block a user