tauri-app: add account name in history view
All checks were successful
record-daemon / Build, check and test (push) Successful in 2m8s

This commit is contained in:
2026-05-17 23:07:08 +02:00
parent 1f5cb450bf
commit cd13af0b34

View File

@@ -195,6 +195,7 @@ onMounted(() => {
<!-- Result Banner --> <!-- Result Banner -->
<div class="result-banner"> <div class="result-banner">
<span class="result-text">{{ getGameResult(game) }}</span> <span class="result-text">{{ getGameResult(game) }}</span>
<span v-if="getSummonerName(game)" class="account-name">{{ getSummonerName(game) }}</span>
<span <span
v-if="getLpChange(game)" v-if="getLpChange(game)"
class="lp-badge" class="lp-badge"
@@ -680,6 +681,12 @@ onMounted(() => {
letter-spacing: 0.05em; letter-spacing: 0.05em;
} }
.result-banner .account-name {
font-size: 0.7rem;
font-weight: 400;
color: rgba(255, 255, 255, 0.5);
}
.lp-badge { .lp-badge {
font-size: 0.7rem; font-size: 0.7rem;
font-weight: 700; font-weight: 700;