Skip to content

Commit c48fb44

Browse files
fix: make empty screen template grid mobile responsive (calcom#24259)
* fix: make empty screen template grid mobile responsive * refactor: adjust EmptyScreen layout classes for responsive grid --------- Co-authored-by: Kartik Saini <41051387+kart1ka@users.noreply.github.com>
1 parent e7c908b commit c48fb44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/features/ee/workflows/components/EmptyScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const TemplateSection = ({ title, examples }: { title: string; examples: Workflo
148148
<div className="flex items-center justify-center">
149149
<div className="bg-muted flex max-w-5xl flex-col rounded-md p-2">
150150
<h2 className="text-emphasis mb-2 text-base font-semibold">{title}</h2>
151-
<div className="grid-cols-none items-center gap-2 lg:grid lg:grid-cols-3">
151+
<div className="grid grid-cols-1 items-center gap-2 lg:grid-cols-3">
152152
{examples.map((example: WorkflowExampleType, index: number) => (
153153
<WorkflowExample
154154
key={index}

0 commit comments

Comments
 (0)