From ff2d01588d4e69d3bf1ad856e8e225b7f6a3c0f2 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期一, 26 八月 2024 11:01:48 +0800 Subject: [PATCH] 1、基本实现电子说明书页面布局及功能 2、基本实现语言大模型页面与后端数据联动 --- public/index.html | 28 +++++++++++++++++++++------- 1 files changed, 21 insertions(+), 7 deletions(-) diff --git a/public/index.html b/public/index.html index 83db454..9853e46 100644 --- a/public/index.html +++ b/public/index.html @@ -223,21 +223,35 @@ /* 婊氬姩鏉′紭鍖� start */ ::-webkit-scrollbar{ width:0; - height:8px; + height:0; } + /*::-webkit-scrollbar-track{*/ + /*background: #f6f6f6;*/ + /*border-radius:20px;*/ + /*}*/ + /*::-webkit-scrollbar-thumb{*/ + /*background: #e9e9e9;*/ + /*border-radius:20px;*/ + /*}*/ + /*::-webkit-scrollbar-thumb:hover{*/ + /*background: #cfcfcf;*/ + /*}*/ + /*::-webkit-scrollbar-corner {*/ + /*background: #f6f6f6;*/ + /*}*/ ::-webkit-scrollbar-track{ - background: #f6f6f6; - border-radius:2px; + background: transparent; + border-radius:20px; } ::-webkit-scrollbar-thumb{ - background: #cdcdcd; - border-radius:2px; + background: transparent; + border-radius:20px; } ::-webkit-scrollbar-thumb:hover{ - background: #747474; + background: transparent; } ::-webkit-scrollbar-corner { - background: #f6f6f6; + background: transparent; } /* 婊氬姩鏉′紭鍖� end */ </style> -- Gitblit v1.9.3