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
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:
parent
287306a475
commit
cc7def7593
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