mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-09-25 11:13:30 +02:00
add padding to bottom nav for iphone
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, viewport-fit=cover" />
|
||||||
<link rel="stylesheet" href="./src/styles.css" />
|
<link rel="stylesheet" href="./src/styles.css" />
|
||||||
<title>noStrudel</title>
|
<title>noStrudel</title>
|
||||||
<meta name="description" content="A simple nostr web client focused on exploring nostr" />
|
<meta name="description" content="A simple nostr web client focused on exploring nostr" />
|
||||||
|
@@ -20,7 +20,7 @@ export default function MobileBottomNav(props: Omit<FlexProps, "children">) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Flex {...props} gap="2" padding="2" alignItems="center">
|
<Flex {...props} gap="2" p="2" alignItems="center" pb="calc(var(--chakra-space-2) + env(safe-area-inset-bottom))">
|
||||||
{account ? (
|
{account ? (
|
||||||
<UserAvatar pubkey={account.pubkey} size="sm" onClick={onOpen} noProxy />
|
<UserAvatar pubkey={account.pubkey} size="sm" onClick={onOpen} noProxy />
|
||||||
) : (
|
) : (
|
||||||
|
Reference in New Issue
Block a user