Skip to content

Commit

Permalink
Simplify breakpoint with a tailwind default
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Arze Leon authored and Rodrigo Arze Leon committed Feb 13, 2025
1 parent 7f258ac commit aee70b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/engine-frontend/components/IntegrationSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export function IntegrationSearch({
<h3 className="mb-2 text-lg font-semibold text-foreground">
{parseCategory(category)}
</h3>
<div className="hidden w-full flex-row flex-wrap gap-4 [@media(min-width:800px)]:flex [@media(min-width:800px)]:w-[60%]">
<div className="hidden w-full flex-row flex-wrap gap-4 md:flex md:w-[60%]">
{categoryInts.map((int) => (
<WithConnectorConnect
key={int.id}
Expand Down Expand Up @@ -212,7 +212,7 @@ export function IntegrationSearch({
</WithConnectorConnect>
))}
</div>
<div className="flex w-full flex-col gap-2 [@media(min-width:800px)]:hidden">
<div className="flex w-full flex-col gap-2 md:hidden">
{categoryInts.map((int, index) => (
<WithConnectorConnect
key={int.id}
Expand Down

0 comments on commit aee70b8

Please sign in to comment.