mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-04-05 02:20:26 +02:00
increase min height of note overlay
This commit is contained in:
parent
c6a4f96cd3
commit
06f8e5952a
5
.changeset/quiet-singers-cross.md
Normal file
5
.changeset/quiet-singers-cross.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"nostrudel": patch
|
||||
---
|
||||
|
||||
Increase min height of note before showing expandable overlay
|
@ -80,7 +80,7 @@ export default function DiscoverTab() {
|
||||
return (
|
||||
<Flex direction="column" gap="2">
|
||||
{timeline.map((event) => (
|
||||
<Note key={event.id} event={event} maxHeight={300} />
|
||||
<Note key={event.id} event={event} maxHeight={600} />
|
||||
))}
|
||||
{loading ? <Spinner ml="auto" mr="auto" mt="8" mb="8" /> : <Button onClick={() => loadMore()}>Load More</Button>}
|
||||
</Flex>
|
||||
|
@ -44,7 +44,7 @@ export default function FollowingTab() {
|
||||
<Switch id="show-replies" isChecked={showReplies} onChange={onToggle} />
|
||||
</FormControl>
|
||||
{timeline.map((event) => (
|
||||
<Note key={event.id} event={event} maxHeight={300} />
|
||||
<Note key={event.id} event={event} maxHeight={600} />
|
||||
))}
|
||||
{loading ? <Spinner ml="auto" mr="auto" mt="8" mb="8" /> : <Button onClick={() => loadMore()}>Load More</Button>}
|
||||
</Flex>
|
||||
|
@ -57,7 +57,7 @@ export default function GlobalTab() {
|
||||
</FormControl>
|
||||
</Flex>
|
||||
{timeline.map((event) => (
|
||||
<Note key={event.id} event={event} maxHeight={300} />
|
||||
<Note key={event.id} event={event} maxHeight={600} />
|
||||
))}
|
||||
{loading ? <Spinner ml="auto" mr="auto" mt="8" mb="8" /> : <Button onClick={() => loadMore()}>Load More</Button>}
|
||||
</Flex>
|
||||
|
@ -76,7 +76,7 @@ const UserNotesTab = () => {
|
||||
</Popover>
|
||||
</FormControl>
|
||||
{timeline.map((event) => (
|
||||
<Note key={event.id} event={event} maxHeight={300} />
|
||||
<Note key={event.id} event={event} maxHeight={1200} />
|
||||
))}
|
||||
{loading ? <Spinner ml="auto" mr="auto" mt="8" mb="8" /> : <Button onClick={() => loadMore()}>Load More</Button>}
|
||||
</Flex>
|
||||
|
@ -17,7 +17,9 @@ const UserRelaysTab = () => {
|
||||
<Flex direction="column" gap="2">
|
||||
{ranked.map((relayConfig) => (
|
||||
<Box key={relayConfig.url} display="flex" gap="2" alignItems="center" pr="2" pl="2">
|
||||
<Text flex={1}>{relayConfig.url}</Text>
|
||||
<Text flex={1} isTruncated>
|
||||
{relayConfig.url}
|
||||
</Text>
|
||||
<RelayScoreBreakdown relay={relayConfig.url} />
|
||||
{relayConfig.mode & RelayMode.WRITE ? <Badge colorScheme="green">Write</Badge> : null}
|
||||
{relayConfig.mode & RelayMode.READ ? <Badge>Read</Badge> : null}
|
||||
|
Loading…
x
Reference in New Issue
Block a user