Skip to content

Commit

Permalink
Change the grid responsive behavior to prevent overflow. (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhammond authored Oct 24, 2022
1 parent f18139a commit c1d51b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/components/clients/Clients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function Clients({
const LogoWrapper = ({ className, children }) => {
if (!staticWidth) return children;
return (
<div className={cn("w-48 flex items-center justify-center", className)}>
<div className={cn("w-48 lg:w-40 flex items-center justify-center", className)}>
{children}
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion docs/components/pages/landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function Teams() {
Trusted by teams from
<br className="inline md:hidden" /> around the world
</p>
<div className="z-50 grid grid-rows-3 md:grid-rows-2 lg:grid-rows-1 grid-flow-col">
<div className="z-50 grid grid-rows-6 sm:grid-rows-3 md:grid-rows-2 lg:grid-rows-1 grid-flow-col">
<Clients
companyList={[
"Vercel",
Expand Down

0 comments on commit c1d51b6

Please sign in to comment.