remove comments in template
Some checks failed
API report (misskey.js) / report (pull_request) Successful in 2m45s
Lint / pnpm_install (pull_request) Successful in 2m24s
Test (backend) / unit (22.x) (pull_request) Successful in 7m23s
Test (backend) / e2e (22.x) (pull_request) Failing after 8m27s
Test (frontend) / vitest (22.x) (pull_request) Successful in 3m0s
Test (misskey.js) / test (22.x) (pull_request) Successful in 2m48s
Test (production install and build) / production (22.x) (pull_request) Successful in 3m21s
Test (backend) / validate-api-json (22.x) (pull_request) Successful in 3m28s
Lint / lint (backend) (pull_request) Failing after 2m10s
Lint / lint (frontend) (pull_request) Successful in 9m22s
Lint / lint (misskey-js) (pull_request) Successful in 2m34s
Lint / lint (sw) (pull_request) Successful in 2m28s
Lint / typecheck (backend) (pull_request) Failing after 1m53s
Lint / typecheck (misskey-js) (pull_request) Successful in 2m13s

This commit is contained in:
Leah 2025-01-19 15:50:19 +01:00
parent 287306a475
commit cc7def7593

View file

@ -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 {