Unminify CSS and apply suggestions from the design team

This commit is contained in:
Jaiwanth 2021-06-03 12:40:00 +05:30
parent f84ae4a173
commit 183166c460
4 changed files with 19525 additions and 14 deletions

View file

@ -141,7 +141,7 @@ export function formatFullDateNoDay(date: Date) {
return (
date.getFullYear() +
"-" +
pad(date.getMonth()) +
pad(date.getMonth() + 1) +
"-" +
pad(date.getDate()) +
_t(" at ") +
@ -152,3 +152,13 @@ export function formatFullDateNoDay(date: Date) {
pad(date.getSeconds())
);
}
export function formatFullDateNoDayNoTime(date: Date) {
return (
date.getFullYear() +
"/" +
pad(date.getMonth() + 1) +
"/" +
pad(date.getDate())
);
}