fix: Fixes commands webpage table spacing (#1672)

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

View file

@ -429,8 +429,8 @@
tabData.forEach(item => {
table += `
<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">
<td class="xs:px-2 py-4 text-sm font-medium text-gold-500 w-1/3 m-w-1/2"><p class="break-all">${item.name}</p></td>
<td class="text-sm text-gold-900 pl-4 py-4">
`;
const usageParts = (item.usage || item.name).split(" ");