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