Custom Email Templates #45
1 changed files with 7 additions and 7 deletions
|
@ -52,15 +52,15 @@ export class EmailService {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
color: #555;
|
color: #555;
|
||||||
border-radius: 16px; /* Rounded corners */
|
border-radius: 16px;
|
||||||
overflow: hidden; /* Ensure children respect border radius */
|
overflow: hidden;
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
main > header {
|
main > header {
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
background: #50f0ff;
|
background: #50f0ff;
|
||||||
border-top-left-radius: 16px; /* Round the top corners */
|
border-top-left-radius: 16px;
|
||||||
border-top-right-radius: 16px;
|
border-top-right-radius: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,16 +81,16 @@ export class EmailService {
|
||||||
main > footer {
|
main > footer {
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
border-top: solid 1px #eee;
|
border-top: solid 1px #eee;
|
||||||
border-bottom-left-radius: 16px; /* Round the bottom corners */
|
border-bottom-left-radius: 16px;
|
||||||
border-bottom-right-radius: 16px;
|
border-bottom-right-radius: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
max-width: 500px;
|
max-width: 500px;
|
||||||
margin: 16px auto; /* Centers the nav block horizontally */
|
margin: 16px auto;
|
||||||
padding: 0 32px;
|
padding: 0 32px;
|
||||||
text-align: center; /* Centers the content inside nav */
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav > a {
|
nav > a {
|
||||||
|
|
Loading…
Reference in a new issue