Skip to content

Commit

Permalink
WIP fix header structure
Browse files Browse the repository at this point in the history
  • Loading branch information
arsforza committed Aug 1, 2024
1 parent cc4e8a9 commit a59d889
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions services/API-service/src/api/notification/email/mjml/header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,15 @@ export const getMjmlHeader = ({
};

return {
tagName: 'mj-column',
attributes: {
'background-color': '#4f22d7',
},
children: [titleElement, subtitleElement],
tagName: 'mj-section',
children: [
{
tagName: 'mj-column',
attributes: {
'background-color': '#4f22d7',
},
children: [titleElement, subtitleElement],
},
],
};
};

0 comments on commit a59d889

Please sign in to comment.