fix: bg cards forms
This commit is contained in:
parent
140d706683
commit
276451f3bf
|
|
@ -103,7 +103,7 @@ export default function NewExpenseRoute() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="container mx-auto min-h-full flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
<div className="container mx-auto min-h-full flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
||||||
<div className="card bg-neutral w-full shadow-lg max-w-lg">
|
<div className="card bg-base-200 w-full shadow-lg max-w-lg">
|
||||||
<div className="card-body w-full">
|
<div className="card-body w-full">
|
||||||
<h1 className="card-title">Add an expense</h1>
|
<h1 className="card-title">Add an expense</h1>
|
||||||
<Form
|
<Form
|
||||||
|
|
@ -119,7 +119,7 @@ export default function NewExpenseRoute() {
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
className="input"
|
className="input input-bordered"
|
||||||
name="description"
|
name="description"
|
||||||
id="description-input"
|
id="description-input"
|
||||||
defaultValue={actionData?.fields?.description}
|
defaultValue={actionData?.fields?.description}
|
||||||
|
|
@ -161,7 +161,7 @@ export default function NewExpenseRoute() {
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
type="number"
|
type="number"
|
||||||
className="input"
|
className="input input-bordered"
|
||||||
id="amount-input"
|
id="amount-input"
|
||||||
name="amount"
|
name="amount"
|
||||||
defaultValue={actionData?.fields?.amount}
|
defaultValue={actionData?.fields?.amount}
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ export default function NewExpenseRoute() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="container mx-auto min-h-full flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
<div className="container mx-auto min-h-full flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
||||||
<div className="card bg-neutral w-full shadow-lg max-w-lg">
|
<div className="card bg-base-200 w-full shadow-lg max-w-lg">
|
||||||
<div className="card-body w-full">
|
<div className="card-body w-full">
|
||||||
<h1 className="card-title">Transfer to user</h1>
|
<h1 className="card-title">Transfer to user</h1>
|
||||||
<Form
|
<Form
|
||||||
|
|
@ -132,7 +132,7 @@ export default function NewExpenseRoute() {
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
className="input"
|
className="input input-bordered"
|
||||||
name="description"
|
name="description"
|
||||||
id="description-input"
|
id="description-input"
|
||||||
defaultValue={actionData?.fields?.description}
|
defaultValue={actionData?.fields?.description}
|
||||||
|
|
@ -144,7 +144,7 @@ export default function NewExpenseRoute() {
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
type="number"
|
type="number"
|
||||||
className="input"
|
className="input input-bordered"
|
||||||
id="amount-input"
|
id="amount-input"
|
||||||
name="amount"
|
name="amount"
|
||||||
defaultValue={actionData?.fields?.amount}
|
defaultValue={actionData?.fields?.amount}
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@ export default function Login() {
|
||||||
<>
|
<>
|
||||||
<Header />
|
<Header />
|
||||||
<div className="container mx-auto min-h-full flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
<div className="container mx-auto min-h-full flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
||||||
<div className="card bg-neutral w-full shadow-lg max-w-lg">
|
<div className="card bg-base-200 w-full shadow-lg max-w-lg">
|
||||||
<div className="card-body w-full">
|
<div className="card-body w-full">
|
||||||
<h1 className="card-title">Login</h1>
|
<h1 className="card-title">Login</h1>
|
||||||
<Form
|
<Form
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue