fix padding

This commit is contained in:
hzrd149 2023-02-07 17:04:19 -06:00
parent b11b078b66
commit 8e96cf78f8

View File

@ -26,7 +26,7 @@ const UserRelaysTab = () => {
return ( return (
<Grid templateColumns={{ base: "1fr", xl: "repeat(2, 1fr)" }} gap="2"> <Grid templateColumns={{ base: "1fr", xl: "repeat(2, 1fr)" }} gap="2">
{Object.entries(contacts.relays).map(([url, opts]) => ( {Object.entries(contacts.relays).map(([url, opts]) => (
<Box key={url} display="flex" gap="2" alignItems="center"> <Box key={url} display="flex" gap="2" alignItems="center" pr="2" pl="2">
<Text flex={1}>{url}</Text> <Text flex={1}>{url}</Text>
<IconButton <IconButton
icon={<GlobalIcon />} icon={<GlobalIcon />}
@ -40,7 +40,6 @@ const UserRelaysTab = () => {
isDisabled={relays.includes(url)} isDisabled={relays.includes(url)}
size="sm" size="sm"
aria-label="Add Relay" aria-label="Add Relay"
mr="4"
/> />
</Box> </Box>
))} ))}