Skip to content

Commit

Permalink
fixing table 2 column.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Oct 14, 2023
1 parent d427f79 commit f222211
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h6 class="card-title">Medical Records</h6>
<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>
Expand Down Expand Up @@ -94,14 +94,6 @@ <h6 class="mg-b-0 tx-inverse">3</h6>
<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>
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit f222211

Please sign in to comment.