Skip to content

Commit

Permalink
style: h-full, w-full
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Dec 29, 2023
1 parent 4418a50 commit 6525a42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/search/filterComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const CalendarFilter = (props: CalendarFilterProps) => {
<div className="flex flex-row items-center gap-2">
<input
type="date"
className="rounded-lg border-[1px] border-gray px-4 py-2"
className="h-full w-full appearance-none rounded-lg border-[1px] border-gray px-4 py-2"
value={start}
onChange={handleStartChange}
/>
Expand All @@ -104,7 +104,7 @@ export const CalendarFilter = (props: CalendarFilterProps) => {
<div className="flex flex-row items-center gap-2">
<input
type="date"
className="rounded-lg border-[1px] border-gray px-4 py-2"
className="h-full w-full appearance-none rounded-lg border-[1px] border-gray px-4 py-2"
value={end}
onChange={handleEndChange}
/>
Expand Down

0 comments on commit 6525a42

Please sign in to comment.