1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00

Merge pull request #8 from koloml/minor-text-and-styling-changes

Minor content & styling changes and fixes
This commit is contained in:
2024-06-27 02:03:07 +04:00
committed by GitHub
3 changed files with 18 additions and 8 deletions

View File

@@ -4,7 +4,7 @@
</script>
<Menu>
<MenuLink href="/settings/maintenance">Manual Tags Maintenance</MenuLink>
<MenuLink href="/settings/maintenance">Tagging Profiles</MenuLink>
<hr>
<MenuLink href="/about">About</MenuLink>
</Menu>

View File

@@ -6,5 +6,5 @@
<Menu>
<MenuLink href="/">Back</MenuLink>
<hr>
<MenuLink href="/settings/maintenance">Maintenance</MenuLink>
<MenuLink href="/settings/maintenance">Tagging Profiles</MenuLink>
</Menu>

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>