Skip to content
Snippets Groups Projects
Commit 2df9ff92 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Fix guest-login-button color

parent 96f80724
No related merge requests found
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<mat-error *ngIf="passwordFormControl.hasError('required')">{{ 'login.password-required' | translate }}</mat-error> <mat-error *ngIf="passwordFormControl.hasError('required')">{{ 'login.password-required' | translate }}</mat-error>
</mat-form-field> </mat-form-field>
<button mat-raised-button color="accent" type="submit">{{ 'login.login' | translate }}</button> <button mat-raised-button color="accent" type="submit">{{ 'login.login' | translate }}</button>
<button mat-raised-button (click)="guestLogin()" type="button" color="warn"> <button mat-raised-button (click)="guestLogin()" type="button" class="guestButton">
{{ 'login.guest-login' | translate }} {{ 'login.guest-login' | translate }}
</button> </button>
</form> </form>
form { form {
padding: 10px; padding: 10px;
} }
.guestButton {
background-color: #bbdefb;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment