mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
fix: signing email breaks on small devices
Currently the signing email displays poorly on small devices with the line wrapping causing the button to look broken. Resolve this by using whitespace no-wrap.
This commit is contained in:
parent
5c58b32d92
commit
d863f89232
1 changed files with 2 additions and 2 deletions
|
|
@ -11,8 +11,8 @@ export const signingRequestTemplate = (
|
|||
user: any
|
||||
) => {
|
||||
const customContent = `
|
||||
<p style="margin: 30px;">
|
||||
<a href="${ctaLink}" style="background-color: #37f095; color: white; border-color: transparent; border-width: 1px; border-radius: 0.375rem; font-size: 18px; padding-left: 16px; padding-right: 16px; padding-top: 10px; padding-bottom: 10px; text-decoration: none; margin-top: 4px; margin-bottom: 4px;">
|
||||
<p style="margin: 30px 0px; text-align: center">
|
||||
<a href="${ctaLink}" style="background-color: #37f095; white-space: nowrap; color: white; border-color: transparent; border-width: 1px; border-radius: 0.375rem; font-size: 18px; padding-left: 16px; padding-right: 16px; padding-top: 10px; padding-bottom: 10px; text-decoration: none; margin-top: 4px; margin-bottom: 4px;">
|
||||
${ctaLabel}
|
||||
</a>
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Reference in a new issue