updated to use new stylesheets

pull/1/head
Chris Veilleux 2019-01-23 20:10:25 -06:00
parent 93e6cf2619
commit 3c0f9c1122
2 changed files with 7 additions and 2 deletions

View File

@ -7,6 +7,6 @@
</div> </div>
<div mat-dialog-actions align="end"> <div mat-dialog-actions align="end">
<button mat-button (click)="onCancelClick()">CANCEL</button> <button id="device-remove-cancel-button" mat-button (click)="onCancelClick()">CANCEL</button>
<button mat-button [mat-dialog-close]="true" class="danger-button">REMOVE</button> <button id="device-remove-button" mat-button [mat-dialog-close]="true">REMOVE</button>
</div> </div>

View File

@ -1,5 +1,10 @@
@import '~src/stylesheets/components/buttons';
.mat-body{ .mat-body{
margin-bottom: 16px; margin-bottom: 16px;
width: 250px; width: 250px;
} }
#device-remove-button {
@include action-button-warn;
}