fix: Fixes commands webpage table size (#1671)

This commit is contained in:
Kamron Batman 2024-02-10 01:53:41 -08:00 committed by GitHub
parent ac61b22f4b
commit d9d3a36815
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -346,7 +346,7 @@
<!-- JavaScript will populate tabs here -->
</ul>
<!-- Tab Content -->
<div id="tabContent" class="p-4 border-t border-gold-500">
<div id="tabContent" class="border-t border-gold-500">
<!-- JavaScript will populate tab content here -->
</div>
</div>
@ -428,7 +428,7 @@
let table = `<table class="min-w-full border-collapse table-fixed"><tbody>`;
tabData.forEach(item => {
table += `
<tr class="border-b">
<tr class="border-b border-gold-500">
<td class="px-4 py-4 text-sm font-medium text-gold-500 w-1/4"><p>${item.name}</p></td>
<td class="text-sm text-gold-900 px-6 py-4">
`;