Skip to content

Commit

Permalink
Merge pull request #671 from openstad/fix/user-notification-after-res…
Browse files Browse the repository at this point in the history
…ource-submit

feat: Add default styling for e-mail data
  • Loading branch information
iandebruin98 authored Nov 1, 2024
2 parents 01b090f + b645c8f commit 61a344e
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 61a344e

Please sign in to comment.