From ee56f4a7a2017feb6fb9ed715981cb1e27409212 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Wed, 22 Oct 2025 18:27:27 +0200 Subject: [PATCH] Update virtual-machines.tsx --- AppImage/components/virtual-machines.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/AppImage/components/virtual-machines.tsx b/AppImage/components/virtual-machines.tsx index d8fb700..028428b 100644 --- a/AppImage/components/virtual-machines.tsx +++ b/AppImage/components/virtual-machines.tsx @@ -642,6 +642,19 @@ export function VirtualMachines() { 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 */ table + p { margin-top: 1rem;