From 4d17285ca111ac79c439039221327a4cdd76a282 Mon Sep 17 00:00:00 2001 From: A1300399510 Date: Tue, 19 Nov 2024 16:26:58 +0800 Subject: [PATCH] no message --- css/common.css | 12 ++++++++++++ css/common.less | 16 +++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/css/common.css b/css/common.css index a35b643..04bcee6 100644 --- a/css/common.css +++ b/css/common.css @@ -727,6 +727,18 @@ body { font-size: 14px; width: 348px; } +.manage-input::-webkit-scrollbar-track-piece { + background-color: transparent; +} +.manage-input::-webkit-scrollbar { + width: 7px; + height: 7px; + background-color: transparent; +} +.manage-input::-webkit-scrollbar-thumb { + border-radius: 5px; + background-color: #ebebeb; +} .empty-box { flex-direction: column; } diff --git a/css/common.less b/css/common.less index 480707d..b34bcfe 100644 --- a/css/common.less +++ b/css/common.less @@ -824,8 +824,22 @@ body { min-height: 34px; padding-right: 10px; font-size: 14px; - // width: 384px; width: 348px; + + &::-webkit-scrollbar-track-piece { + background-color: transparent; + } + + &::-webkit-scrollbar { + width: 7px; + height: 7px; + background-color: transparent; + } + + &::-webkit-scrollbar-thumb { + border-radius: 5px; + background-color: rgba(235, 235, 235, 1); + } } .empty-box {