refactor: Comment out wallet balance display in Navbar for future adjustments

- Comment out the wallet balance display section in Navbar.vue to prepare for potential redesign or feature updates.
- Remove the border from the CurrencyDisplay component.
This commit is contained in:
padreug 2025-08-03 00:42:34 +02:00
parent 941b4c3ec5
commit 98bd504333
2 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
<template>
<div class="flex items-center gap-1 bg-muted/30 rounded-lg p-1 border">
<div class="flex items-center gap-1 bg-muted/30 rounded-lg p-1">
<!-- Platinum -->
<div class="flex items-center gap-1 px-2 py-1 rounded bg-blue-900/50 border border-blue-700/30">
<div class="w-3 h-3 rounded-full bg-gradient-to-br from-slate-300 to-slate-500 border border-slate-400"></div>
@ -40,4 +40,4 @@ const currency = computed<EverQuestCurrency>(() => {
const satoshis = Math.floor(props.balanceMsat / 1000)
return satoshisToEverQuest(satoshis)
})
</script>
</script>