Add icon to delete history button

pull/1745/head
Chocobozzz 2019-03-20 14:08:03 +01:00
parent a55052c9ba
commit d01b2fb9ab
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 8 additions and 8 deletions

View File

@ -4,9 +4,10 @@
<label i18n>History enabled</label> <label i18n>History enabled</label>
</div> </div>
<div class="delete-history"> <button class="delete-history" (click)="deleteHistory()" i18n>
<button (click)="deleteHistory()" i18n>Delete history</button> <my-global-icon iconName="delete"></my-global-icon>
</div> Delete history
</button>
</div> </div>

View File

@ -23,12 +23,11 @@
} }
.delete-history { .delete-history {
font-size: 15px; @include peertube-button;
@include grey-button;
@include button-with-icon;
button { font-size: 15px;
@include peertube-button;
@include grey-button;
}
} }
} }