diff --git a/apps/webapp/app/components/templates/TemplateOverview.tsx b/apps/webapp/app/components/templates/TemplateOverview.tsx
index 935dde48f..ac2050099 100644
--- a/apps/webapp/app/components/templates/TemplateOverview.tsx
+++ b/apps/webapp/app/components/templates/TemplateOverview.tsx
@@ -32,24 +32,24 @@ export function TemplateOverview({ template }: { template: TemplateListItem }) {
-
- {template.services.map((service) => (
-
- ))}
-
-
{title}
{description}
+
+ {template.services.map((service) => (
+
+ ))}
+
+
diff --git a/apps/webapp/app/components/templates/TemplatesGrid.tsx b/apps/webapp/app/components/templates/TemplatesGrid.tsx
index eb0313e8e..fd25ce13a 100644
--- a/apps/webapp/app/components/templates/TemplatesGrid.tsx
+++ b/apps/webapp/app/components/templates/TemplatesGrid.tsx
@@ -42,7 +42,7 @@ export function TemplatesGrid({
key={template.title}
type="button"
onClick={(e) => setOpenedTemplate(template)}
- className="group w-full flex flex-col h-full overflow-hidden rounded-md border border-slate-700 bg-slate-800 text-left text-sm text-slate-200 shadow-md transition hover:cursor-pointer hover:border-slate-500 hover:bg-slate-700/30 disabled:opacity-50"
+ className="group flex h-full w-full flex-col overflow-hidden rounded-md border border-slate-700 bg-slate-800 text-left text-sm text-slate-200 shadow-md transition hover:cursor-pointer hover:border-slate-500 hover:bg-slate-700/30 disabled:opacity-50"
>
+
+
+ {template.title}
+
+
+ {template.description}
+
+
{template.services.map((service) => (
))}
-
-
-
- {template.title}
-
-
- {template.description}
-
-
);