I have a simple nested table. Three columns - Name, Email,Contact. In the contact column, I have have two contact separated by a 
. This table gets stacked in the form of one row below the another in the mobile view.
Problem : Since the two contact numbers are separated by a break, in the mobile view it adds a huge space between the column headings. I just want to pick up "contact" heading in mobile(and not touch the numbers) and move it a little to reduce the space in between. Right now, whatever css I apply it moves the contact numbers along with it. Please suggest how can I do this ?
$(function() {
  $(".fold-table tr.view").on("click", function() {
    $(this).toggleClass("open").next(".fold").toggleClass("open");
  });
});
$('.view, table.child').each(function() {
  $('.view:even, table.child:even').addClass('odd');
  $('.view:odd, table.child:odd').addClass('even');
});.tableComponent table.parent {
  font-family: 'Poppins';
  font-size: 12px;
  width: 60%;
  border: none;
  border-collapse: separate;
  border-spacing: 0 2px;
}
.tableComponent table thead th {
  border-bottom: 0;
  border-top: 0;
}
.tableComponent table td,
th {
  border-top: 0px;
}
table.fold-table>tbody>tr.view td,
table.fold-table>tbody>tr.view th {
  cursor: pointer;
}
table.fold-table>tbody>tr.fold {
  display: none;
}
table.fold-table>tbody>tr.fold.open {
  display: table-row;
}
.odd {
  background-color: #F2F2F2;
}
.even {
  background-color: #F8F8F8
}
table.child {
  font-family: 'Poppins';
  font-size: 12px;
  width: 100%;
  margin-top: -0.1rem;
  border-top: 2px solid #DBDBDB;
}
table.fold-table>tbody>tr.fold.open>td {
  padding: 0;
}
@media all and (max-width: 500px) {
  .tableComponent table.parent {
    width: 90%;
    margin-left: 5vw
  }
  .tableComponent thead {
    display: none;
  }
  .tableComponent tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
  }
  .tableComponent td::before {
    content: attr(col);
    font-weight: bold;
    padding-right: 20px;
    width: 40vw;
    display: inline-block;
  }
  table.child {
    margin-top: -0.5rem;
  }
  .contactInfo {
    display: inline-block;
    margin-left: -0.2rem;
  }
}<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="tableComponent">
  <table class="table fold-table parent" id="table">
    <thead>
      <tr>
        <th scope="col">Name</th>
        <th scope="col">Email</th>
        <th scope="col">Contact</th>
      </tr>
    </thead>
    <tbody>
      <tr class="view">
        <td col="Name">John</td>
        <td col="Email">j@g.com</td>
        <td col="Contact">
          <span class="contactInfo">
                            35373726<br>
                            35373726
                        </span>
        </td>
      </tr>
      <tr class="fold">
        <td colspan="3">
          <div class="fold-content">
            <table class="child">
              <tbody>
                <tr>
                  <td col="Name">SUB Data 1</td>
                  <td col="Email">SUB Data 1</td>
                  <td col="Contact">SUB Data 1
                  </td>
                </tr>
                <tr>
                  <td col="Name">SUB Data 1</td>
                  <td col="Email">SUB Data 1</td>
                  <td col="Contact">SUB Data 1
                  </td>
                </tr>
              </tbody>
            </table>
          </div>
        </td>
      </tr>
    </tbody>
  </table>
</div> 
     
     
    