Skip to content

Commit

Permalink
Fixed session-expired page view and minor improvments (#8939)
Browse files Browse the repository at this point in the history
  • Loading branch information
nithish1018 authored Oct 28, 2024
1 parent b9aff5e commit eeed897
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ErrorPages/SessionExpired.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function SessionExpired() {
<img
src="/images/session_expired.svg"
alt={t("session_expired")}
className="w-full"
className="mx-auto w-1/2"
/>
<h1>{t("session_expired")}</h1>
<p>
Expand All @@ -26,7 +26,7 @@ export default function SessionExpired() {
<br />
<div
onClick={signOut}
className="hover:bg-primary- inline-block cursor-pointer rounded-lg bg-primary-600 px-4 py-2 text-white hover:text-white"
className="mt-5 inline-block cursor-pointer rounded-lg bg-primary-600 px-4 py-2 text-white hover:bg-primary-400"
>
{t("return_to_login")}
</div>
Expand Down

0 comments on commit eeed897

Please sign in to comment.