Skip to content

Commit

Permalink
๐Ÿ› fix: gird ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
Ujaa authored Dec 4, 2024
1 parent 436a20e commit a46cd06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/client/src/widgets/home/WorkspaceGrid/WorkspaceGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { PropsWithChildren } from 'react';
*/
export const WorkspaceGrid = ({ children }: PropsWithChildren) => {
return (
<ul className="grid grid-cols-1 gap-x-6 gap-y-8 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
<li>{children}</li>
<ul>
<li className="grid grid-cols-1 gap-x-6 gap-y-8 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">{children}</li>
</ul>
);
};

0 comments on commit a46cd06

Please sign in to comment.