Skip to content

Commit

Permalink
[ES-675] Something went wrong page responsive fix
Browse files Browse the repository at this point in the history
Signed-off-by: Gk <76690271+GurukiranP@users.noreply.github.com>
  • Loading branch information
gk-4VII authored Jun 6, 2024
1 parent 10d08f8 commit d70e68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oidc-ui/src/pages/SomethingWrong.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function SomethingWrongPage({ i18nKeyPrefix = "errors" }) {
const { t } = useTranslation("translation", { keyPrefix: i18nKeyPrefix });
const statusCode = useLocation().state.code;
return (
<div className="multipurpose-login-card w-full m-16 shadow shadow-lg py-24">
<div className="multipurpose-login-card w-full m-0 sm:shadow sm:shadow-lg py-24 sm:m-16 section-background">
<img className="mx-auto my-0" src="images/under_construction.svg" alt="something_went_wrong" />
<div className="error-page-header">{t("statusCodeHeader." + statusCode)}</div>
<div className="error-page-detail">{t("statusCodeSubHeader." + statusCode)}</div>
Expand Down

0 comments on commit d70e68e

Please sign in to comment.