fix: small ui bug in 404 pages (#19254)

This commit is contained in:
Benny Joo
2025-02-12 08:30:00 +00:00
committed by GitHub
parent 3fe83bb45c
commit 1dc869971e
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -122,8 +122,7 @@ async function NotFound() {
<span className="mt-2 inline-block text-lg">{t("check_spelling_mistakes_or_go_back")}</span>
) : IS_CALCOM ? (
<a target="_blank" href={url} className="mt-2 inline-block text-lg" rel="noreferrer">
{t(`404_the_${pageType.toLowerCase()}`)}
{t(`404_the_${pageType.toLowerCase()}`)}{" "}
{username ? (
<>
<strong className="text-blue-500">{username}</strong>
@@ -137,7 +136,7 @@ async function NotFound() {
{t(`404_the_${pageType.toLowerCase()}`)}{" "}
{username ? (
<>
<strong className="text-lgtext-green-500 mt-2 inline-block">{username}</strong>{" "}
<strong className="mt-2 inline-block text-lg text-green-500">{username}</strong>{" "}
{t("is_still_available")}
</>
) : null}
+1 -1
View File
@@ -155,7 +155,7 @@ export default function Custom404() {
) : (
<span className="mt-2 inline-block text-lg">
{t(`404_the_${currentPageType.toLowerCase()}`)}{" "}
<strong className="text-lgtext-green-500 mt-2 inline-block">{username}</strong>{" "}
<strong className="mt-2 inline-block text-lg text-green-500">{username}</strong>{" "}
{t("is_still_available")}
</span>
)}