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 packages/sdk-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ compliant identity server.

## Getting Started

If you are new to Angular development, you may want to start with the Quickstart guide. If you are already familiar with Angular development, skip to the Configuration section.
If you are new to Angular development, you may want to start with the Quickstart guide. If you are already familiar with Angular development, skip to the Installation section.

### Quickstart

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
padding: 16px 16px 13px 16px;
border-radius: 8px;
background-color: #083b94;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
font-size: 18px;
font-weight: 600;
text-align: center;
Expand All @@ -13,4 +14,4 @@
}

width: 400px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { FusionAuthService } from '../../fusion-auth.service';
@Component({
selector: 'fa-login',
templateUrl: './fusion-auth-login-button.component.html',
styleUrls: ['../fa-button.scss', './fusion-auth-login-button.component.scss']
styleUrls: ['../fa-button.scss', './fusion-auth-login-button.component.scss'],
})
export class FusionAuthLoginButtonComponent {
@Input() state: string | undefined;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<button class="fa-button" (click)="logout()">
<span>Logout</span>
</button>
</button>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import { FusionAuthService } from '../../fusion-auth.service';
@Component({
selector: 'fa-logout',
templateUrl: './fusion-auth-logout-button.component.html',
styleUrls: ['../fa-button.scss', './fusion-auth-logout-button.component.scss']
styleUrls: [
'../fa-button.scss',
'./fusion-auth-logout-button.component.scss',
],
})
export class FusionAuthLogoutButtonComponent {
constructor(private fusionAuth: FusionAuthService) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import { FusionAuthService } from '../../fusion-auth.service';
@Component({
selector: 'fa-register',
templateUrl: './fusion-auth-register-button.component.html',
styleUrls: ['../fa-button.scss', './fusion-auth-register-button.component.scss']
styleUrls: [
'../fa-button.scss',
'./fusion-auth-register-button.component.scss',
],
})
export class FusionAuthRegisterButtonComponent {
@Input() state: string | undefined;
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ compliant identity server.

## Getting Started

If you are new to React development, you may want to start with the Quickstart guide. If you are already familiar with React development, skip to the Configuration section.
If you are new to React development, you may want to start with the Quickstart guide. If you are already familiar with React development, skip to the Installation section.

### Quickstart

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk-vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ compliant identity server.

## Getting Started

If you are new to Vue development, you may want to start with the Quickstart guide. If you are already familiar with Vue development, skip to the Configuration section.
If you are new to Vue development, you may want to start with the Quickstart guide. If you are already familiar with Vue development, skip to the Installation section.

### Quickstart

Expand Down