Fixed margin issue
This commit is contained in:
parent
84082ac014
commit
485c7b645b
1 changed files with 8 additions and 2 deletions
|
@ -28,6 +28,12 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.follower {
|
||||||
|
margin-right: 1.5rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
{#if userData}
|
{#if userData}
|
||||||
<Area>
|
<Area>
|
||||||
<span slot="header">
|
<span slot="header">
|
||||||
|
@ -51,12 +57,12 @@
|
||||||
|
|
||||||
<h2>Following</h2>
|
<h2>Following</h2>
|
||||||
{#each following as user}
|
{#each following as user}
|
||||||
<a href='/user/{user}'>{user.following} </a>
|
<a class='follower' href='/user/{user}'>{user.following}</a>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
<h2>Followers</h2>
|
<h2>Followers</h2>
|
||||||
{#each followers as user}
|
{#each followers as user}
|
||||||
<a href='/user/{user}'>{user.username} </a>
|
<a class='follower' href='/user/{user}'>{user.username}</a>
|
||||||
{/each}
|
{/each}
|
||||||
</span>
|
</span>
|
||||||
<span slot="footer">
|
<span slot="footer">
|
||||||
|
|
Loading…
Reference in a new issue