Update account list component template to use Materialize.

This commit is contained in:
Alexis Lahouze 2017-08-27 18:03:48 +02:00
parent 674411a1e2
commit acdbe3ab48

View File

@ -15,6 +15,7 @@ import { AccountEditModalComponent } from './accountEditModal.component';
selector: 'account-list', selector: 'account-list',
template: ` template: `
<div class="row"> <div class="row">
<div class="col s12">
<table class="table table-sm table-striped table-condensed table-hover"> <table class="table table-sm table-striped table-condensed table-hover">
<thead> <thead>
<tr> <tr>
@ -40,6 +41,7 @@ import { AccountEditModalComponent } from './accountEditModal.component';
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
</div> </div>
`, `,
}) })