From 631b4ae2a89c408bd83042cfd0b310e9c0be5250 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Sat, 24 Jul 2021 12:45:03 -0600 Subject: [PATCH] ui: fix ServerRow icon being squished --- resources/scripts/components/elements/GreyRowBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/scripts/components/elements/GreyRowBox.tsx b/resources/scripts/components/elements/GreyRowBox.tsx index 09ba91f69..e3acc7332 100644 --- a/resources/scripts/components/elements/GreyRowBox.tsx +++ b/resources/scripts/components/elements/GreyRowBox.tsx @@ -6,6 +6,6 @@ export default styled.div<{ $hoverable?: boolean }>` ${props => props.$hoverable !== false && tw`hover:border-neutral-500`}; & .icon { - ${tw`rounded-full bg-neutral-500 p-3`}; + ${tw`h-12 w-12 rounded-full bg-neutral-500 flex items-center justify-center`}; } `;