@hedhog/admin 0.46.40 → 0.46.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/emails/templates.js
CHANGED
@@ -8,7 +8,7 @@ exports.defaults = {
|
|
8
8
|
<h1 style="color: #2c3e50; font-size: 26px; margin: 0;">${title}</h1>
|
9
9
|
</div>
|
10
10
|
`,
|
11
|
-
default_body: (content) => `<body style="font-family: Arial, sans-serif; background-color: #eef2f7; color: #333; margin: 0; padding:
|
11
|
+
default_body: (content) => `<body style="font-family: Arial, sans-serif; background-color: #eef2f7; color: #333; margin: 0; padding: 1px;">
|
12
12
|
<div style="max-width: 600px; margin: 40px auto; background-color: #ffffff; border: 1px solid #dcdfe6; border-radius: 10px; padding: 40px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);">
|
13
13
|
${content.join('')}
|
14
14
|
</div>
|
package/package.json
CHANGED
package/src/emails/templates.ts
CHANGED
@@ -7,7 +7,7 @@ export const defaults = {
|
|
7
7
|
`,
|
8
8
|
default_body: (
|
9
9
|
content: string[],
|
10
|
-
) => `<body style="font-family: Arial, sans-serif; background-color: #eef2f7; color: #333; margin: 0; padding:
|
10
|
+
) => `<body style="font-family: Arial, sans-serif; background-color: #eef2f7; color: #333; margin: 0; padding: 1px;">
|
11
11
|
<div style="max-width: 600px; margin: 40px auto; background-color: #ffffff; border: 1px solid #dcdfe6; border-radius: 10px; padding: 40px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);">
|
12
12
|
${content.join('')}
|
13
13
|
</div>
|