diff --git a/packages/sdk-angular/README.md b/packages/sdk-angular/README.md index a2b5abb..c1bc352 100644 --- a/packages/sdk-angular/README.md +++ b/packages/sdk-angular/README.md @@ -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 diff --git a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fa-button.scss b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fa-button.scss index cbdf96c..3a90edf 100644 --- a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fa-button.scss +++ b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fa-button.scss @@ -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; @@ -13,4 +14,4 @@ } width: 400px; -} \ No newline at end of file +} diff --git a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-login.button/fusion-auth-login-button.component.ts b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-login.button/fusion-auth-login-button.component.ts index 3db385a..1075c81 100644 --- a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-login.button/fusion-auth-login-button.component.ts +++ b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-login.button/fusion-auth-login-button.component.ts @@ -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; diff --git a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.html b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.html index 76d66b6..743fd7a 100644 --- a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.html +++ b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.html @@ -1,3 +1,3 @@ \ No newline at end of file + diff --git a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.ts b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.ts index d93015b..8164b60 100644 --- a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.ts +++ b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.ts @@ -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) {} diff --git a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-register.button/fusion-auth-register-button.component.ts b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-register.button/fusion-auth-register-button.component.ts index be2b4fb..ae34d57 100644 --- a/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-register.button/fusion-auth-register-button.component.ts +++ b/packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-register.button/fusion-auth-register-button.component.ts @@ -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; diff --git a/packages/sdk-react/README.md b/packages/sdk-react/README.md index 64703e7..67e2710 100644 --- a/packages/sdk-react/README.md +++ b/packages/sdk-react/README.md @@ -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 diff --git a/packages/sdk-vue/README.md b/packages/sdk-vue/README.md index 6064aaa..cf3c2ef 100644 --- a/packages/sdk-vue/README.md +++ b/packages/sdk-vue/README.md @@ -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