Clean up the dashboard view table spacing on mobile

This commit is contained in:
Kevin MacMartin 2018-01-21 22:40:42 -05:00
parent 0c5cd33462
commit 315a4893ec
2 changed files with 55 additions and 43 deletions

View file

@ -195,8 +195,17 @@ body {
&, &:hover, &:focus { text-decoration: none; }
}
.view-table-container {
@media (max-width: $screen-xs-max) {
padding: 10px 5px;
}
.table {
> thead > tr > th { border-bottom: 1px solid #666; }
margin-bottom: 0px;
> thead > tr > th {
border-bottom: 1px solid #666;
}
@media (max-width: $screen-md-max) {
tr {
@ -226,6 +235,7 @@ body {
.mobile-heading { display: none; }
}
}
}
.list-group {
margin-bottom: 0px;

View file

@ -7,6 +7,7 @@
@endsection
@section('dashboard-body')
<div class="view-table-container">
<table class="table">
<thead>
<tr class="heading-row">
@ -26,4 +27,5 @@
@endforeach
</tbody>
</table>
</div>
@endsection