zuramai / mazer

Free and Open-source Bootstrap 5 Admin Dashboard Template and Landing Page
http://zuramai.github.io/mazer
MIT License
2.77k stars 782 forks source link

Table Small doesn't work #299

Open crescent1 opened 4 months ago

crescent1 commented 4 months ago

hi, looks like table-sm doesn't work.

<div class="table-responsive">
 <table class="table table-sm table-hover">
  <thead>
     <tr class="bg-primary text-center">
          <th class="text-white">No</th>
          <th class="text-white">Name</th>
          <th class="text-white">Email</th>
          <th class="text-white">Type</th>
          <th class="text-white"></th>
      </tr>
   </thead>
 </table>
</div>

pic: Screenshot from 2024-07-23 11-58-37

Stranger1298 commented 1 month ago

please assign this issue to me

ankitaghadge19 commented 1 month ago

In which file is this code written?

naitik-2006 commented 1 month ago

please assign this issue to me for hacktoberfest-accepted

crescent1 commented 1 month ago

For now, I added padding to the header to change its size.

<thead>
    <tr class="bg-primary text-center">
        <th class="text-white p-1">Variation Name</th>
        <th class="text-white p-1">Stock</th>
        <th class="text-white p-1">Price</th>
    </tr>
</thead>