ui: fix ServerRow icon being squished
This commit is contained in:
parent
0828d00857
commit
631b4ae2a8
|
@ -6,6 +6,6 @@ export default styled.div<{ $hoverable?: boolean }>`
|
||||||
${props => props.$hoverable !== false && tw`hover:border-neutral-500`};
|
${props => props.$hoverable !== false && tw`hover:border-neutral-500`};
|
||||||
|
|
||||||
& .icon {
|
& .icon {
|
||||||
${tw`rounded-full bg-neutral-500 p-3`};
|
${tw`h-12 w-12 rounded-full bg-neutral-500 flex items-center justify-center`};
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
Loading…
Reference in New Issue