Skip to content

Commit

Permalink
refactor: adjust sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
Siumauricio committed Jan 13, 2025
1 parent 5052688 commit dd3fcce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/dokploy/components/dashboard/projects/show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const ShowProjects = () => {
</span>
</div>
)}
<div className="w-full grid sm:grid-cols-1 lg:grid-cols-2 xl:grid-cols-4 flex-wrap gap-5">
<div className="w-full grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-4 flex-wrap gap-5">
{filteredProjects?.map((project) => {
const emptyServices =
project?.mariadb.length === 0 &&
Expand Down
2 changes: 1 addition & 1 deletion apps/dokploy/components/layouts/side.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ export default function Page({ children }: Props) {
</header>
)}

<div className="flex flex-1 flex-col gap-4 p-4 pt-0">{children}</div>
<div className="flex flex-col w-full gap-4 p-4 pt-0">{children}</div>
</SidebarInset>
</SidebarProvider>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/dokploy/pages/dashboard/project/[projectId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ const Project = (
</div>
) : (
<div className="flex w-full flex-col gap-4">
<div className="grid gap-5 pb-10 sm:grid-cols-2 lg:grid-cols-3">
<div className=" gap-5 pb-10 grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3">
{filteredServices?.map((service) => (
<Card
key={service.id}
Expand Down

0 comments on commit dd3fcce

Please sign in to comment.