docs: second round of polishing (#8724)

* docs: second round of polishing

* fix overflowing width
This commit is contained in:
Shahed Nasser
2024-08-23 10:42:23 +03:00
committed by GitHub
parent 49353f8c3c
commit c63a08fb03
11 changed files with 75 additions and 4865 deletions

View File

@@ -18,13 +18,13 @@ export const MainNavEditDate = ({ date }: MainNavEditDateProps) => {
return (
<>
<span>
<span className="text-compact-small">
Edited {dateMatch.groups.month} {dateObj.getDate()}
{dateObj.getFullYear() !== today.getFullYear()
? `, ${dateObj.getFullYear()}`
: ""}
</span>
<span className="text-compact-small-plus">&#183;</span>
<span className="text-compact-small">&#183;</span>
</>
)
}