Skip to content

Commit

Permalink
[fix] Signature width
Browse files Browse the repository at this point in the history
Fixes #15
  • Loading branch information
ponsfrilus committed Nov 15, 2024
1 parent 559a652 commit a11d2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/responsable/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ export default function Page() {
</div>
<div className="dotted-input-text flex flex-row gap-2">
<label htmlFor="signature">Signature</label>
<input name="signature" defaultValue={rapportStorage.signature} onChange={(e) => updateStorageOnChange('signature', e.target.value)} id="Signature" className="w-2/3" type="text" placeholder={".".repeat(500)} />
<input name="signature" defaultValue={rapportStorage.signature} onChange={(e) => updateStorageOnChange('signature', e.target.value)} id="Signature" className="w-auto" type="text" placeholder={".".repeat(500)} />
</div>
</div>
</div>
Expand Down

0 comments on commit a11d2e4

Please sign in to comment.