Skip to content

Commit

Permalink
🤖 GITHUB ACTIONS format_prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
leomendoza123 committed Mar 20, 2024
1 parent bb4245f commit 8d62367
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 110 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ export class TwoFactorAuthenticationFormComponent implements AfterViewInit {
verificationCode: this.twoFactorForm.value.verificationCode,
recoveryCode: this.twoFactorForm.value.recoveryCode,
})
this.enableValidators();
this.enableValidators()
} else {
this.enableValidators();
this.enableValidators()
}
}

Expand All @@ -104,7 +104,7 @@ export class TwoFactorAuthenticationFormComponent implements AfterViewInit {
this.verificationFormControl.setValidators([
Validators.required,
Validators.maxLength(6),
Validators.minLength(6)
Validators.minLength(6),
])
this.verificationFormControl.updateValueAndValidity()
this.verificationFormControl.markAsDirty()
Expand All @@ -114,7 +114,7 @@ export class TwoFactorAuthenticationFormComponent implements AfterViewInit {
this.recoveryCodeFormControl.setValidators([
Validators.required,
Validators.maxLength(10),
Validators.minLength(10)
Validators.minLength(10),
])
this.recoveryCodeFormControl.updateValueAndValidity()
this.recoveryCodeFormControl.markAsDirty()
Expand Down
212 changes: 106 additions & 106 deletions src/app/sign-in/pages/sign-in/sign-in.component.scss
Original file line number Diff line number Diff line change
@@ -1,106 +1,106 @@
:host {
width: 100%;
}

.main {
display: block;
margin-left: auto;
margin-right: auto;
}

.mat-card-title {
margin-top: 32px !important;
text-align: center;
margin-bottom: 8px !important;
}

.mat-subheading-2 {
text-align: center;
margin-top: 24px;
margin-bottom: 4px;
}

.forgot {
margin-top: 16px;
}

.dontHaveOrcid {
margin-top: 12px;
}

.register-now {
display: inline;
}

.mat-card .mat-divider-horizontal {
position: relative;
}

.icon {
margin-bottom: 26px;

img {
width: 64px;
}
}

.sign-in-wrapper {
padding: 64px !important;
h1 {
margin-top: 0;
}

.orc-font-heading-small {
font-style: normal;
font-weight: 500;
}

mat-progress-bar {
top: 0 !important;
}

mat-card-title {
margin: 0 0 32px 0 !important;
}

mat-card-content {
margin: 0px;
}

.icon {
margin-bottom: 32px !important;
}

.forgot {
margin-top: 24px;
}

mat-divider,
.separator {
margin: 24px 0;
}

.separator {
display: flex;
align-items: center;
text-align: center;
}

.separator::before,
.separator::after {
content: '';
flex: 1;
}

.separator:not(:empty)::before {
margin-right: 0.5em;
}

.separator:not(:empty)::after {
margin-left: 0.5em;
}
}

.sign-in-wrapper.mobile {
padding: 0;
}
:host {
width: 100%;
}

.main {
display: block;
margin-left: auto;
margin-right: auto;
}

.mat-card-title {
margin-top: 32px !important;
text-align: center;
margin-bottom: 8px !important;
}

.mat-subheading-2 {
text-align: center;
margin-top: 24px;
margin-bottom: 4px;
}

.forgot {
margin-top: 16px;
}

.dontHaveOrcid {
margin-top: 12px;
}

.register-now {
display: inline;
}

.mat-card .mat-divider-horizontal {
position: relative;
}

.icon {
margin-bottom: 26px;

img {
width: 64px;
}
}

.sign-in-wrapper {
padding: 64px !important;
h1 {
margin-top: 0;
}

.orc-font-heading-small {
font-style: normal;
font-weight: 500;
}

mat-progress-bar {
top: 0 !important;
}

mat-card-title {
margin: 0 0 32px 0 !important;
}

mat-card-content {
margin: 0px;
}

.icon {
margin-bottom: 32px !important;
}

.forgot {
margin-top: 24px;
}

mat-divider,
.separator {
margin: 24px 0;
}

.separator {
display: flex;
align-items: center;
text-align: center;
}

.separator::before,
.separator::after {
content: '';
flex: 1;
}

.separator:not(:empty)::before {
margin-right: 0.5em;
}

.separator:not(:empty)::after {
margin-left: 0.5em;
}
}

.sign-in-wrapper.mobile {
padding: 0;
}

0 comments on commit 8d62367

Please sign in to comment.