From 13a15bc4107ce3f0b1783cc07a2f8ae1c6253638 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=AD=E4=BA=865=E6=AF=9B=E9=92=B1?= Date: Wed, 29 Nov 2023 15:25:37 +0800 Subject: [PATCH] feat: (RQRCode) Modify the color of the QR code copy to make it clearer --- src/components/RQRCode/src/index.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/components/RQRCode/src/index.scss b/src/components/RQRCode/src/index.scss index e447cce8..70d71545 100644 --- a/src/components/RQRCode/src/index.scss +++ b/src/components/RQRCode/src/index.scss @@ -22,5 +22,24 @@ font-weight: 500; color: #ffffff; } + + & .ray-qrcode__error-btn { + .ray-icon, + .n-button__content { + color: #fff; + } + .n-button:hover { + .ray-icon, + .n-button__content { + color: var(--n-text-color-hover); + } + } + .n-button:active { + .ray-icon, + .n-button__content { + color: var(--n-text-color-pressed); + } + } + } } }