Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 7608a71

Browse files
author
Manuel Proß
committed
fix(FE): remove unused style for positioning
1 parent 51c6520 commit 7608a71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/Inputs/TextInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function Input({ type, label, id, required, placeholder, value, n
2323
};
2424

2525
return (
26-
<div className="relative flex flex-col">
26+
<div className="flex flex-col">
2727
{label && (
2828
<label className={`mb-1 ${errorMessage && 'text-red-800'}`} htmlFor={id}>
2929
{`${label}*`}

0 commit comments

Comments
 (0)