Skip to content

Commit

Permalink
fix: make table responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
avatsaev committed Mar 29, 2019
1 parent ead0071 commit e1d0020
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 22 deletions.
40 changes: 20 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<table *ngIf="contacts; else loading" class="table table-hover">
<thead>
<table *ngIf="contacts; else loading" class="table table-hover table-responsive-md">
<thead class="header">
<tr>
<th>#</th>
<th>Name</th>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.contact-row
animation: fadeIn 600ms

.header
width: 100%

0 comments on commit e1d0020

Please sign in to comment.