Commit ced25c51c44cd36a6b731ae64748607aa8d6cbaf

Authored by Igor Kulikov
1 parent c6bd82dd

Improve OAuth buttons style

@@ -56,7 +56,7 @@ @@ -56,7 +56,7 @@
56 <div class="line"><mat-divider></mat-divider></div> 56 <div class="line"><mat-divider></mat-divider></div>
57 </div> 57 </div>
58 <ng-container *ngFor="let oauth2Client of oauth2Clients"> 58 <ng-container *ngFor="let oauth2Client of oauth2Clients">
59 - <a mat-raised-button color="primary" class="centered" href="{{ oauth2Client.url }}"> 59 + <a mat-raised-button color="warn" class="centered" href="{{ oauth2Client.url }}">
60 <mat-icon svgIcon="{{ oauth2Client.icon }}"></mat-icon> 60 <mat-icon svgIcon="{{ oauth2Client.icon }}"></mat-icon>
61 {{ 'login.login-with' | translate: {name: oauth2Client.name} }} 61 {{ 'login.login-with' | translate: {name: oauth2Client.name} }}
62 </a> 62 </a>
@@ -70,6 +70,7 @@ @@ -70,6 +70,7 @@
70 display: flex; 70 display: flex;
71 justify-content: center; 71 justify-content: center;
72 align-items: center; 72 align-items: center;
  73 + text-transform: uppercase;
73 } 74 }
74 } 75 }
75 } 76 }