mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-06-12 18:01:02 +02:00
fix padding
This commit is contained in:
parent
b11b078b66
commit
8e96cf78f8
@ -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>
|
||||||
))}
|
))}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user