Update virtual-machines.tsx

This commit is contained in:
MacRimi
2025-10-22 18:27:27 +02:00
parent c40b6ca7f4
commit ee56f4a7a2

View File

@@ -642,6 +642,19 @@ export function VirtualMachines() {
text-align: center; text-align: center;
} }
/* Style the second cell of the table to match Proxmox UI */
table td:nth-child(2) {
text-align: left;
padding-left: 16px;
border-left: 2px solid rgba(255, 255, 255, 0.2);
}
/* Ensure h1 and p in the second cell are left-aligned */
table td:nth-child(2) h1,
table td:nth-child(2) p {
text-align: left;
}
/* Add separator after tables */ /* Add separator after tables */
table + p { table + p {
margin-top: 1rem; margin-top: 1rem;