Skip to content

Commit

Permalink
add spacing in bottom in mobile for modal
Browse files Browse the repository at this point in the history
  • Loading branch information
gokulkrishh committed Jan 14, 2024
1 parent a352114 commit 92f4564
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/add/expenses.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function AddExpense({ show, onHide, mutate, selected, lookup }: A

return (
<Modal someRef={inputRef} show={show} title={`${selected.id ? 'Edit' : 'Add'} Expense`} onHide={onHide}>
<div className="sm:flex sm:items-start">
<div className="sm:flex sm:items-start max-sm:pb-6">
<form
className="md:[420px] grid w-full grid-cols-1 items-center gap-3"
onSubmit={(event) => {
Expand Down
2 changes: 1 addition & 1 deletion components/add/income.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function AddIncome({ show, onHide, mutate, selected, lookup }: Ad

return (
<Modal someRef={inputRef} show={show} title={`${selected.id ? 'Edit' : 'Add'} Income`} onHide={onHide}>
<div className="sm:flex sm:items-start">
<div className="sm:flex sm:items-start max-sm:pb-6">
<form
className="md:[420px] grid w-full grid-cols-1 items-center gap-3"
onSubmit={(event) => {
Expand Down
2 changes: 1 addition & 1 deletion components/add/investments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function AddInvestments({ show, onHide, mutate, selected, lookup

return (
<Modal someRef={inputRef} show={show} title={`${selected.id ? 'Edit' : 'Add'} Investment`} onHide={onHide}>
<div className="sm:flex sm:items-start">
<div className="sm:flex sm:items-start max-sm:pb-6">
<form
className="md:[420px] grid w-full grid-cols-1 items-center gap-3"
onSubmit={(event) => {
Expand Down
2 changes: 1 addition & 1 deletion components/add/subscriptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function AddSubscriptions({ show, onHide, mutate, selected, looku

return (
<Modal someRef={inputRef} show={show} title={`${selected.id ? 'Edit' : 'Add'} Subscription`} onHide={onHide}>
<div className="sm:flex sm:items-start">
<div className="sm:flex sm:items-start max-sm:pb-6">
<form
className="md:[420px] grid w-full grid-cols-1 items-center gap-3"
onSubmit={(event) => {
Expand Down

1 comment on commit 92f4564

@vercel
Copy link

@vercel vercel bot commented on 92f4564 Jan 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.