Skip to content

Commit

Permalink
feat: Add default styling for e-mail data
Browse files Browse the repository at this point in the history
  • Loading branch information
iandebruin98 committed Nov 1, 2024
1 parent 01b090f commit b645c8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/api-server/src/models/Notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@ module.exports = ( db, sequelize, DataTypes ) => {
<tbody>
${questionsAndAnswers.map(qa => `
<tr style="background-color: #f0f0f0;">
<td style="padding: 10px; font-weight: bold;">${qa.question}</td>
<td style="padding: 10px; font-weight: bold; color: #000; font-size: 13px;font-family: Roboto;">${qa.question}</td>
</tr>
<tr style="background-color: #ffffff;">
<td style="padding: 10px;">
<td style="padding: 10px; color: #000; font-size: 13px;font-family: Roboto;">
${qa.answer}
<br/>
</td>
Expand Down Expand Up @@ -261,10 +261,10 @@ module.exports = ( db, sequelize, DataTypes ) => {
<tbody>
${questionsAndAnswers.map(qa => `
<tr style="background-color: #f0f0f0;">
<td style="padding: 10px; font-weight: bold;">${qa.question}</td>
<td style="padding: 10px; font-weight: bold; color: #000; font-size: 13px;font-family: Roboto;">${qa.question}</td>
</tr>
<tr style="background-color: #ffffff;">
<td style="padding: 10px;">
<td style="padding: 10px; color: #000; font-size: 13px;font-family: Roboto;">
${qa.answer}
<br/>
</td>
Expand Down

0 comments on commit b645c8f

Please sign in to comment.