diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-07 16:34:55 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-07 19:04:13 +0100 |
| commit | a385d89dfd6312f2255d1343cea3f63375ce5b39 (patch) | |
| tree | cad32cfd21e188eb1c145d0fda173da7f353b591 /src/components/Form/Input/Input.tsx | |
| parent | 8efb9219116a6c665d1059d3218c9405c616e404 (diff) | |
chore: improve comment section
I also adjust styles for all forms and primary buttons.
Diffstat (limited to 'src/components/Form/Input/Input.tsx')
| -rw-r--r-- | src/components/Form/Input/Input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Form/Input/Input.tsx b/src/components/Form/Input/Input.tsx index 2ee214b..16cb854 100644 --- a/src/components/Form/Input/Input.tsx +++ b/src/components/Form/Input/Input.tsx @@ -32,7 +32,7 @@ const Input = ( {label && ( <label htmlFor={id} className={styles.label}> {label} - {required && <span> *</span>} + {required && <span className={styles.required}> *</span>} </label> )} <input |
