Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.fa-button {
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-size: 18px;
font-weight: 600;
text-align: center;
color: #fff;

&:hover {
cursor: pointer;
}

width: 400px;
}
Original file line number Diff line number Diff line change
@@ -1,15 +0,0 @@
.fa-button {
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-size: 18px;
font-weight: 600;
text-align: center;
color: #fff;
&:hover {
cursor: pointer;
}
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: ['./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-logout-button" (click)="logout()">
<span>logout</span>
</button>
<button class="fa-button" (click)="logout()">
<span>Logout</span>
</button>
Original file line number Diff line number Diff line change
@@ -1,14 +0,0 @@
.fa-logout-button {
padding: 7px 13px;
border-radius: 3px;
display: block;
border: solid 1px #083b94;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
font-size: 12px;
text-align: center;
color: #083b94;
&:hover {
cursor: pointer;
}
}
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-logout',
templateUrl: './fusion-auth-logout-button.component.html',
styleUrls: ['./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
@@ -1,16 +0,0 @@
.fa-button {
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-size: 18px;
font-weight: 600;
text-align: center;
color: #fff;
&:hover {
cursor: pointer;
}

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-register',
templateUrl: './fusion-auth-register-button.component.html',
styleUrls: ['./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