aboutsummaryrefslogtreecommitdiff
path: root/src/lib/sections/Zones.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/sections/Zones.svelte')
-rw-r--r--src/lib/sections/Zones.svelte8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/sections/Zones.svelte b/src/lib/sections/Zones.svelte
index 1ea3f0d..ef96456 100644
--- a/src/lib/sections/Zones.svelte
+++ b/src/lib/sections/Zones.svelte
@@ -9,8 +9,9 @@
{#if data.member.zones}
<p class="zones-visited-text">
+ Zones visited:
<span class="zones-visited-number">
- <b>{zonesVisitedCount}</b>/{data.member.zones.length} zones visited
+ <b>{zonesVisitedCount}</b>/{data.member.zones.length}
</span>
</p>
<ul>
@@ -26,6 +27,7 @@
<style>
.zones-visited-text {
color: var(--theme-darker-text);
+ margin: 0.5em 0;
}
.zones-visited-number {
color: var(--theme-main-text);
@@ -33,4 +35,8 @@
.unvisited-zone {
opacity: 0.5;
}
+ ul {
+ padding-left: 1em;
+ margin: 0;
+ }
</style>