From 979fcdf584b0100de27244fcb489b4abd1d54839 Mon Sep 17 00:00:00 2001 From: kokodev Date: Sun, 6 Oct 2024 16:54:14 -0700 Subject: [PATCH] Update ServerRow.tsx --- resources/scripts/components/dashboard/ServerRow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/scripts/components/dashboard/ServerRow.tsx b/resources/scripts/components/dashboard/ServerRow.tsx index 698629acc..001296827 100644 --- a/resources/scripts/components/dashboard/ServerRow.tsx +++ b/resources/scripts/components/dashboard/ServerRow.tsx @@ -18,7 +18,7 @@ const IconDescription = styled.p<{ $alarm?: boolean }>` ${(props) => props.$alarm && tw`text-red-300`}; `; -const StatusIndicatorBox = styled(GreyRowBox)<{ $status: ServerPowerState | undefined; $bg: string }>` +const StatusIndicatorBox = styled(GreyRowBox)<{ $status: ServerPowerState | undefined; $bg: string }> ${tw`grid grid-cols-12 gap-4 relative`}; ${({ $bg }) => `background-image: url("${$bg}");`}