CSS text overflow and infinite loading fixes (#4)
All checks were successful
Deploy / Deploy (push) Successful in 41s

Reviewed-on: #4
This commit is contained in:
Astra 2025-05-10 09:14:50 +00:00
parent 614f2b4c30
commit a495f724b9
4 changed files with 20 additions and 6 deletions

View file

@ -52,12 +52,12 @@
<p>Error: {error.message}</p>
{/await}
<div id="Feed">
<div id="Feed" property="infinite-wrapper">
<div id="spacer"></div>
{#each posts as postObject}
<PostComponent post={postObject as Post} />
{/each}
<InfiniteLoading on:infinite={onInfinite} distance={3000} />
<InfiniteLoading on:infinite={onInfinite} distance={3000} forceUseInfiniteWrapper=true />
<div id="spacer"></div>
</div>
</div>
@ -129,7 +129,7 @@
margin-top: 5%;
}
#Account {
width: auto;
width: 85%;
padding-left: 5%;
padding-right: 5%;
margin-bottom: 20px;