imp: use uppercases

This commit is contained in:
liangping 2023-05-27 13:38:59 +08:00
parent e109a0454f
commit 880999ff9b
4 changed files with 5 additions and 4 deletions

View File

@ -32,7 +32,7 @@ const addFavor = (e: Event) => {
<div class="w-8 h-8 rounded-full overflow-hidden"> <div class="w-8 h-8 rounded-full overflow-hidden">
<img :src="conf.logo" /> <img :src="conf.logo" />
</div> </div>
<div class="font-semibold ml-4 text-base flex-1 truncate"> <div class="font-semibold ml-4 text-base flex-1 truncate capitalize">
{{ conf?.prettyName || props.name }} {{ conf?.prettyName || props.name }}
</div> </div>
<div <div

View File

@ -44,7 +44,7 @@ function changeEndpoint(item: Endpoint) {
</label> </label>
<div <div
tabindex="0" tabindex="0"
class="dropdown-content w-80 menu shadow bg-base-200 rounded-box max-h-[300px] overflow-auto" class="dropdown-content w-80 menu shadow bg-base-200 rounded-box overflow-auto"
> >
<!-- rest --> <!-- rest -->
<div <div

View File

@ -128,7 +128,7 @@ const showDiscord = window.location.host.search('ping.pub') > -1;
class="w-6 h-6 rounded-full mr-3 ml-4" class="w-6 h-6 rounded-full mr-3 ml-4"
/> />
<div <div
class="text-base text-gray-500 dark:text-gray-300" class="text-base capitalize text-gray-500 dark:text-gray-300"
:class="{ :class="{
'text-white': 'text-white':
$route.path === el?.to?.path && $route.path === el?.to?.path &&

View File

@ -355,7 +355,8 @@ const color = computed(() => {
<div class="grid grid-cols-3 gap-4 px-4 pb-6 mt-4"> <div class="grid grid-cols-3 gap-4 px-4 pb-6 mt-4">
<label for="PingTokenConvert" class="btn btn-primary text-white">Swap</label> <label for="PingTokenConvert" class="btn btn-primary text-white">Swap</label>
<label for="send" class="btn !bg-yes !border-yes text-white" @click="dialog.open('send', {})">Send</label> <label for="send" class="btn !bg-yes !border-yes text-white" @click="dialog.open('send', {})">Send</label>
<RouterLink to="/wallet/receive" class="btn !bg-info !border-info text-white">Receive</RouterLink> <label for="delegate" class="btn !bg-info !border-info text-white" @click="dialog.open('delegate', {})">Delegate</label>
<RouterLink to="/wallet/receive" class="btn !bg-info !border-info text-white hidden">Receive</RouterLink>
</div> </div>
<Teleport to="body"> <Teleport to="body">
<ping-token-convert <ping-token-convert