clean css

This commit is contained in:
Romulus21
2023-09-11 08:24:22 +02:00
parent 2dab3b48e1
commit 89c179c7e7
17 changed files with 246 additions and 94 deletions

View File

@@ -1,6 +1,7 @@
import React, {Dispatch, FC, FormEvent, SetStateAction, useState} from "react"
import useAxiosTools from "../../hooks/AxiosTools";
import Field from "../Field";
import Card from "../Card";
const AddRainfall: FC<AddRainfallProps> = ({reload}) => {
@@ -20,22 +21,26 @@ const AddRainfall: FC<AddRainfallProps> = ({reload}) => {
}
}
return <form onSubmit={handleSubmit}>
<h2>Ajout d'une mesure</h2>
<Field type="date"
name="date"
placeholder="Email"
value={date}
onChange={event => setDate(event.target.value)}
autoFocus>Date</Field>
<Field type="number"
name="value"
placeholder="10"
value={value}
onChange={event => setValue(Number(event.target.value))}>Mesure</Field>
return <Card className="min-w-[200px] overflow-hidden self-start w-full lg:w-auto">
<h2 className="text-center bg-blue-500 -mx-2 -mt-1 text-lg font-bold px-2 py-1">
Ajout d'une mesure
</h2>
<form onSubmit={handleSubmit} className="p-2 flex flex-col gap-2">
<Field type="date"
name="date"
placeholder="Email"
value={date}
onChange={event => setDate(event.target.value)}
autoFocus>Date</Field>
<Field type="number"
name="value"
placeholder="10"
value={value}
onChange={event => setValue(Number(event.target.value))}>Mesure</Field>
<button type="submit" className="mt-3 w-full bg-blue-700 rounded">Valider</button>
</form>
<button type="submit" className="mt-2 px-2 py-1 w-full text-lg font-bold bg-blue-700 rounded">Valider</button>
</form>
</Card>
}
export default AddRainfall