Skip to content

Commit

Permalink
[ES-1385] Reframed the sentence in the Page Not Found screen of esi…
Browse files Browse the repository at this point in the history
…gnet.

Signed-off-by: Gk <[email protected]>
  • Loading branch information
gk-4VII authored Jul 29, 2024
1 parent 80feda8 commit 8e344e6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions oidc-ui/src/pages/PageNotFound.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ export default function PageNotFoundPage({ i18nKeyPrefix = "errors" }) {
const { t } = useTranslation("translation", { keyPrefix: i18nKeyPrefix });

return (
<div className="multipurpose-login-card w-full m-0 sm:shadow sm:shadow-lg py-24 sm:m-16 section-background">
<div className="multipurpose-login-card w-full m-0 sm:shadow py-24 sm:m-16 section-background" style={{boxShadow: "0px 2px 5px #0000001A"}}>
<img
className="mx-auto my-0"
src="images/under_construction.svg"
alt="page_not_found"
/>
<div className="error-page-header">{t("page_not_exist")}</div>
<div className="error-page-detail">{t("navigate_option")}</div>
</div>
);
}

0 comments on commit 8e344e6

Please sign in to comment.