Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ES-117] Sanity testing issues corrections #244

Merged
merged 1 commit into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oidc-ui/src/components/Background.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function Background({
<img className="h-16" src={logoPath} alt={t("logo_alt")} />
</div>
<div className="w-full">
<h1 className="flex justify-center title-font sm:text-3xl text-3xl mb-3 font-medium text-gray-900">
<h1 className="flex text-center justify-center title-font sm:text-3xl text-3xl mb-3 font-medium text-gray-900">
{heading}
</h1>
</div>
Expand Down
1 change: 1 addition & 0 deletions oidc-ui/src/components/Consent.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ export default function Consent({
<div className="font-semibold">
{t(claimScope.label)}
<button
id={claimScope.label}
className="ml-1 text-sky-600 text-xl"
data-tooltip-content={t(claimScope.tooltip)}
data-tooltip-place="top"
Expand Down
2 changes: 1 addition & 1 deletion oidc-ui/src/components/SignInOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function SignInOptions({
>
<div className="flex items-center">
<img className="w-7" src={option.icon} />
<span className="ml-4 mb-4 mt-4">
<span className="ml-4 mr-4 mb-4 mt-4 ltr:text-left rtl:text-right">
{t("login_with", {
option: t(option.label),
})}
Expand Down