fixing table 2 column.

This commit is contained in:
Jason Kulatunga 2023-09-16 17:05:14 -07:00
parent d427f79ffc
commit f222211b90
No known key found for this signature in database
2 changed files with 15 additions and 9 deletions

View File

@ -16,7 +16,7 @@
<div class="card-body">
<div class="row">
<div class="col-6">
<div class="col-12">
<div class="table-responsive">
<table class="table mg-b-0">
<tbody>
@ -94,14 +94,6 @@
<small class="tx-11 tx-gray-500">Records</small>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-6">
<div class="table-responsive">
<table class="table mg-b-0">
<tbody>
<tr>
<td>
<div class="az-img-user"><img src="assets/icons/healthgoals.svg" alt=""></div>

View File

@ -0,0 +1,14 @@
tbody {
display: grid;
grid-template-columns: repeat(2, auto);
}
/* Borders */
/* The margin declarations are used to simulate border-collapse:collapse */
tr {
margin: 0 0 -1px -1px;
//border: 1px solid black;
}
tbody:not(:empty) {
margin: 0 0 1px 1px;
}