Compare commits

...

3 Commits

Author SHA1 Message Date
Huck 25b8c114a4
Merge 08793925ae into a5670e51cb 2026-06-14 23:22:21 +08:00
lyc8503 a5670e51cb
chore: update FUNDING to ko-fi 2026-06-01 23:10:21 +08:00
Huck 08793925ae Fix header margin & change error message wording 2026-03-03 21:36:56 +00:00
3 changed files with 4 additions and 5 deletions

3
.github/FUNDING.yml vendored
View File

@ -1,3 +1,2 @@
# GitHub Sponsor config # GitHub Sponsor config
# https://buymeacoffee.com/lyc8503 ko_fi: lyc8503
buy_me_a_coffee: lyc8503

View File

@ -1,6 +1,6 @@
.header { .header {
height: rem(56px); height: rem(56px);
margin-bottom: rem(100px); margin-bottom: auto;
background-color: var(--mantine-color-body); background-color: var(--mantine-color-body);
border-bottom: rem(1px) solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4)); border-bottom: rem(1px) solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4));
} }

View File

@ -55,13 +55,13 @@ function formatStatusChangeNotification(
} else if (timeNow == timeIncidentStart) { } else if (timeNow == timeIncidentStart) {
return `🔴 ${ return `🔴 ${
monitor.name monitor.name
} is currently down. \nService is unavailable at ${timeNowFormatted}. \nIssue: ${ } is down. \nService became unavailable at ${timeNowFormatted}. \nIssue: ${
reason || 'unspecified' reason || 'unspecified'
}` }`
} else { } else {
return `🔴 ${ return `🔴 ${
monitor.name monitor.name
} is still down. \nService is unavailable since ${timeIncidentStartFormatted} (${downtimeDuration} minutes). \nIssue: ${ } is down. \nService unavailable since ${timeIncidentStartFormatted} (${downtimeDuration} minutes). \nIssue: ${
reason || 'unspecified' reason || 'unspecified'
}` }`
} }