From ae0e73a4e83a2fe83a912a9073a0ecca714925f1 Mon Sep 17 00:00:00 2001 From: Seven Date: Mon, 29 Dec 2025 17:46:51 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E9=9D=A2=E6=9D=BF=E6=A0=B7=E5=BC=8F=EF=BC=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E5=92=8C=E7=A9=BA=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E5=B1=95=E7=A4=BA=EF=BC=9B=E6=B7=BB=E5=8A=A0=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E7=95=8C=E9=9D=A2=E8=8F=9C=E5=8D=95=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/theme/variables.css | 2 +- src/views/onchain-address/index.vue | 2 +- src/views/trade/components/orders-panel.vue | 183 +++----------------- src/views/user/index.vue | 4 + 4 files changed, 34 insertions(+), 157 deletions(-) diff --git a/src/theme/variables.css b/src/theme/variables.css index 728da6e..449b94f 100644 --- a/src/theme/variables.css +++ b/src/theme/variables.css @@ -189,5 +189,5 @@ html.ion-palette-dark { --ui-input-background: #1e1e1e; --ui-input-color: #ffffff; - --ion-color-faint: #626262; + --ion-color-faint: #1b1b1b; } diff --git a/src/views/onchain-address/index.vue b/src/views/onchain-address/index.vue index a270480..fe54c67 100644 --- a/src/views/onchain-address/index.vue +++ b/src/views/onchain-address/index.vue @@ -85,7 +85,7 @@ const qrcode = useQRCode(url, { @apply flex flex-col items-center gap-2 text-[text-500] font-medium; } .icon { - @apply p-2.5 bg-(--ion-text-color-step-700) rounded-full; + @apply p-2.5 bg-(--ion-color-faint) rounded-full; } .text { diff --git a/src/views/trade/components/orders-panel.vue b/src/views/trade/components/orders-panel.vue index 9531074..2eecdce 100644 --- a/src/views/trade/components/orders-panel.vue +++ b/src/views/trade/components/orders-panel.vue @@ -118,7 +118,7 @@ async function cancelOrder(orderId: string) { - - diff --git a/src/views/user/index.vue b/src/views/user/index.vue index f54d029..875b3b9 100644 --- a/src/views/user/index.vue +++ b/src/views/user/index.vue @@ -1,6 +1,7 @@