Skip to content
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 web/app/(shareLayout)/webapp-signin/normalForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const NormalForm = () => {
</Link>
</div>
{isNonCloudEdition && (
<div className="w-hull mt-2 block system-xs-regular text-text-tertiary">
<div className="mt-2 block w-full system-xs-regular text-text-tertiary">
{t(($) => $.goToInit, { ns: 'login' })}
&nbsp;
<Link
Expand Down
4 changes: 2 additions & 2 deletions web/app/signin/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ export default function SignInLayout({ children }: any) {
<div className={cn('flex min-h-screen w-full justify-center bg-background-default-burn p-6')}>
<div
className={cn(
'flex w-full shrink-0 flex-col items-center rounded-2xl border border-effects-highlight bg-background-default-subtle',
'flex w-full min-w-0 flex-col items-center rounded-2xl border border-effects-highlight bg-background-default-subtle',
)}
>
<Header />
<div
className={cn('flex w-full grow flex-col items-center justify-center px-6 md:px-27')}
>
<div className="flex flex-col md:w-100">{children}</div>
<div className="flex w-full flex-col md:w-100">{children}</div>
</div>
{systemFeatures.branding.enabled === false && (
<div className="px-8 py-6 system-xs-regular text-text-tertiary">
Expand Down
2 changes: 1 addition & 1 deletion web/app/signin/normal-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ function NormalForm() {
</Link>
</div>
{isNonCloudEdition && (
<div className="w-hull mt-2 block system-xs-regular text-text-tertiary">
<div className="mt-2 block w-full system-xs-regular text-text-tertiary">
{t(($) => $.goToInit, { ns: 'login' })}
&nbsp;
<Link
Expand Down