chore(profile): added information about no recent history

This commit is contained in:
2026-02-18 02:31:47 +01:00
parent 527c929b53
commit 448c6e387e
3 changed files with 14 additions and 2 deletions
@@ -14,6 +14,10 @@
</div>
<div class="history-list-box">
<div v-if="combinedJournal.length == 0" class="no-recent-history text--grayed">
{{ t('profile.list.no-recent-history') }}
</div>
<router-link
v-for="entry in combinedJournal"
:to="
@@ -269,6 +273,12 @@ async function fetchPlayerJournal() {
}
}
.no-recent-history {
padding: 1em;
font-size: 1.25em;
font-weight: bold;
}
.entry-top-date {
display: flex;
align-items: center;