-
+
{category}
diff --git a/src/frontend/src/pages/MainPage/components/header/index.tsx b/src/frontend/src/pages/MainPage/components/header/index.tsx
index 1306d26aa..9e284d50e 100644
--- a/src/frontend/src/pages/MainPage/components/header/index.tsx
+++ b/src/frontend/src/pages/MainPage/components/header/index.tsx
@@ -57,7 +57,9 @@ const HeaderComponent = ({
className="flex items-center pb-8 text-xl font-semibold"
data-testid="mainpage_title"
>
-
+
diff --git a/src/frontend/src/pages/MainPage/components/list/index.tsx b/src/frontend/src/pages/MainPage/components/list/index.tsx
index a7ec61dcf..906a5dac3 100644
--- a/src/frontend/src/pages/MainPage/components/list/index.tsx
+++ b/src/frontend/src/pages/MainPage/components/list/index.tsx
@@ -144,8 +144,10 @@ const ListComponent = ({ flowData }: { flowData: FlowType }) => {
Edited {timeElapsed(flowData.updated_at)} ago
-
- {flowData.description}
+
+
+ {flowData.description}
+
diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css
index e875405a0..e4089c842 100644
--- a/src/frontend/src/style/applies.css
+++ b/src/frontend/src/style/applies.css
@@ -322,7 +322,7 @@
@apply flex flex-col justify-center bg-background transition-all;
}
.generic-node-div-title {
- @apply flex w-full items-center gap-2;
+ @apply flex flex-1 items-center gap-2 overflow-hidden;
}
.generic-node-title-arrangement {
@apply flex-max-width items-center truncate;
diff --git a/src/frontend/src/types/templates/types.ts b/src/frontend/src/types/templates/types.ts
index 5ff7731c0..8be80de00 100644
--- a/src/frontend/src/types/templates/types.ts
+++ b/src/frontend/src/types/templates/types.ts
@@ -12,8 +12,8 @@ export interface Category {
}
export interface CardData {
- bg: string;
- spiralImage: string;
+ bgImage: string;
+ bgHorizontalImage: string;
icon: string;
category: string;
flow: FlowType | undefined;