1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Adding more spaces between elements on profile view

This commit is contained in:
2024-06-27 02:01:46 +04:00
parent c45d4619a8
commit 9732fa2005

View File

@@ -43,12 +43,12 @@
<hr>
</Menu>
{#if profile}
<div>
<strong>Profile:</strong><br>
{profile.settings.name}
<div class="block">
<strong>Profile:</strong>
<div>{profile.settings.name}</div>
</div>
<div>
<strong>Focused Tags:</strong>
<div class="block">
<strong>Tags:</strong>
<div class="tags-list">
{#each profile.settings.tags as tagName}
<span class="tag">{tagName}</span>
@@ -67,10 +67,20 @@
{/if}
</MenuLink>
</Menu>
<style>
<style lang="scss">
.tags-list {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.block + .block {
margin-top: .5em;
strong {
display: block;
margin-bottom: .25em;
}
}
</style>