Unminify CSS and apply suggestions from the design team
This commit is contained in:
parent
f84ae4a173
commit
183166c460
4 changed files with 19525 additions and 14 deletions
|
@ -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())
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue