G-Loot DS — table rounded

by Augustin Hiebel

HTML

<div className="overflow-x-auto">
  <table className="table table-rounded w-full">
    <thead>
      <tr>
        <th></th>
        <th>Name</th>
        <th>ID</th>
        <th>Favorite game</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th>1</th>
        <td>Jérôme Weiss</td>
        <td>5778816157089792</td>
        <td>Apex Legends</td>
      </tr>
      <tr>
        <th>2</th>
        <td>Hart Hagerty</td>
        <td>5870578368249856</td>
        <td>League of Legends</td>
      </tr>
      <tr>
        <th>3</th>
        <td>Kees Dieffenthaller</td>
        <td>5858640415686656</td>
        <td>Valorant</td>
      </tr>
    </tbody>
  </table>
</div>