Skip to content

Commit

Permalink
Merge pull request #155 from MadhuMosip/MOSIP-32336
Browse files Browse the repository at this point in the history
MOSIP-35427 fixed button label alignment issue
  • Loading branch information
ckm007 authored Sep 12, 2024
2 parents 7ae4e79 + 9a45bc6 commit fc8d079
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function Error(props: PageProps<Extract<KcContext, { pageId: "err
<div id="kc-error-message" className="text-center w-100% font-inter">
<p className="instruction">{message.summary}</p>
<button className="bg-hLinkColor w-9/12 h-16 text-[#ffffff] mt-9 rounded-xl">
<a id="backToApplication" className="text-[#ffffff]" href={client.baseUrl ? client.baseUrl : url.loginUrl}>
<a id="backToApplication" className="text-[#ffffff] block w-full h-full pt-4" href={client.baseUrl ? client.baseUrl : url.loginUrl}>
{msg("backToApplication")}
</a>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function Info(props: PageProps<Extract<KcContext, { pageId: "info
</p>
{!skipLink && pageRedirectUri !== undefined ? (
<button className="bg-hLinkColor w-9/12 h-16 text-[#ffffff] mt-9 rounded-xl info-a-link">
<a id="backToApplication" className="text-[#ffffff] block w-full h-full pt-3" href={pageRedirectUri}>
<a id="backToApplication" className="text-[#ffffff] block w-full h-full pt-4" href={pageRedirectUri}>
{msg("backToApplication")}
</a>
</button>
Expand All @@ -41,7 +41,7 @@ export default function Info(props: PageProps<Extract<KcContext, { pageId: "info
// </p>
) : actionUri !== undefined ? (
<button className="bg-hLinkColor w-9/12 h-16 text-[#ffffff] mt-9 rounded-xl info-a-link">
<a id="backToApplication" className="text-[#ffffff] block w-full h-full pt-3" href={actionUri}>
<a id="backToApplication" className="text-[#ffffff] block w-full h-full pt-4" href={actionUri}>
{msg("proceedWithAction")}
</a>
</button>
Expand All @@ -50,7 +50,7 @@ export default function Info(props: PageProps<Extract<KcContext, { pageId: "info
// </p>
) : (
<button className="bg-hLinkColor w-9/12 h-16 text-[#ffffff] mt-9 rounded-xl info-a-link">
<a id="backToApplication" className="text-[#ffffff] block w-full h-full pt-3" href={client.baseUrl ? client.baseUrl : url.loginUrl}>
<a id="backToApplication" className="text-[#ffffff] block w-full h-full pt-4" href={client.baseUrl ? client.baseUrl : url.loginUrl}>
{msg("backToApplication")}
</a>
</button>
Expand Down

0 comments on commit fc8d079

Please sign in to comment.