Skip to content

Commit

Permalink
style: fix overflow of input on sm screen
Browse files Browse the repository at this point in the history
  • Loading branch information
hetd54 committed Jul 15, 2024
1 parent 2bf36f1 commit df48824
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Publications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const PublicationSection: React.FC<PubProps> = ({ publications }) => {
)
})}
</section>
<Form className="flex flex-col lg:flex-row gap-4 justify-center m-24">
<Form className="flex flex-col lg:flex-row gap-4 justify-center my-24">
<div>
<Input
label="Search for a publication"
Expand All @@ -87,7 +87,7 @@ const PublicationSection: React.FC<PubProps> = ({ publications }) => {
placeholder="Durand, Jorge..."
value={searchInput}
onChange={handleChange}
className="min-w-96"
className="md:min-w-96"
/>
</div>
<div className="space-y-2">
Expand Down

0 comments on commit df48824

Please sign in to comment.