Skip to content

Commit

Permalink
fix: undo w-full, h-full
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Dec 29, 2023
1 parent a18a406 commit 5c4771d
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="h-full w-full appearance-none rounded-lg border-[1px] border-gray px-4 py-2"
className="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="h-full w-full appearance-none rounded-lg border-[1px] border-gray px-4 py-2"
className="appearance-none rounded-lg border-[1px] border-gray px-4 py-2"
value={end}
onChange={handleEndChange}
/>
Expand Down

0 comments on commit 5c4771d

Please sign in to comment.