update notifications css

This commit is contained in:
2026-01-11 20:05:20 +01:00
parent c906cb733e
commit b0d7d3c0af
6 changed files with 98 additions and 22 deletions
+8
View File
@@ -0,0 +1,8 @@
export default function formatTime(d) {
const date = new Date(d);
const hh = String(date.getUTCHours()).padStart(2, '0');
const min = String(date.getUTCMinutes()).padStart(2, '0');
return `${hh}:${min}`;
}