Fixed margin issue

This commit is contained in:
tdgmdev 2023-03-06 02:34:40 -05:00
parent 84082ac014
commit 485c7b645b

View file

@ -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">