CSS text overflow and infinite loading fixes (#4)
All checks were successful
Deploy / Deploy (push) Successful in 41s
All checks were successful
Deploy / Deploy (push) Successful in 41s
Reviewed-on: #4
This commit is contained in:
parent
614f2b4c30
commit
a495f724b9
4 changed files with 20 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue