Skip to content

Commit

Permalink
Merge pull request #1061 from internxt/fix/signup-for-mobile
Browse files Browse the repository at this point in the history
[_]: fix/Auth View
  • Loading branch information
xabg2 authored Mar 18, 2024
2 parents 27673b0 + 19c73b1 commit c22a33f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/auth/views/RecoveryLinkView/RecoveryLinkView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function RecoveryLinkView(): JSX.Element {
<RecoveryLink />
</div>

<div className="flex shrink-0 flex-col justify-center space-y-3 py-8 sm:flex-row sm:space-x-8 sm:space-y-0">
<div className="flex shrink-0 flex-col items-center justify-center space-x-0 space-y-3 py-8 sm:flex-row sm:space-x-8 sm:space-y-0">
<a href="https://internxt.com/legal" target="_blank" className="text-gray-80 no-underline hover:text-gray-100">
{translate('general.terms')}
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/app/auth/views/SignInView/SignInView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function SignInView(props: SignInProps): JSX.Element {
</div>

{!props.displayIframe && (
<div className="flex shrink-0 flex-col justify-center space-y-3 py-8 sm:flex-row sm:space-x-8 sm:space-y-0">
<div className="flex shrink-0 flex-col items-center justify-center space-x-0 space-y-3 py-8 sm:flex-row sm:space-x-8 sm:space-y-0">
<a
href="https://internxt.com/legal"
target="_blank"
Expand Down
2 changes: 1 addition & 1 deletion src/app/auth/views/SignUpView/SignUpView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function SignUpView(props: SignUpViewProps): JSX.Element {
</div>

{isRegularSignup && (
<div className="flex shrink-0 flex-col justify-center space-y-3 py-8 sm:flex-row sm:space-x-8 sm:space-y-0">
<div className="flex shrink-0 flex-col items-center justify-center space-x-0 space-y-3 py-8 sm:flex-row sm:space-x-8 sm:space-y-0">
<a
href="https://internxt.com/legal"
target="_blank"
Expand Down

0 comments on commit c22a33f

Please sign in to comment.