Commit ced25c51c44cd36a6b731ae64748607aa8d6cbaf

Authored by Igor Kulikov
1 parent c6bd82dd

Improve OAuth buttons style

... ... @@ -56,7 +56,7 @@
56 56 <div class="line"><mat-divider></mat-divider></div>
57 57 </div>
58 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 60 <mat-icon svgIcon="{{ oauth2Client.icon }}"></mat-icon>
61 61 {{ 'login.login-with' | translate: {name: oauth2Client.name} }}
62 62 </a>
... ...
... ... @@ -70,6 +70,7 @@
70 70 display: flex;
71 71 justify-content: center;
72 72 align-items: center;
  73 + text-transform: uppercase;
73 74 }
74 75 }
75 76 }
... ...