fix: 主页右边滚动条改为透明

This commit is contained in:
NanGua-QWQ
2026-04-24 20:44:00 +08:00
parent 0b39a1fffd
commit 198230e968
2 changed files with 6 additions and 12 deletions
+5 -5
View File
@@ -1124,15 +1124,15 @@ function MainContent(): React.JSX.Element {
display: "flex", display: "flex",
bottom: "2px", bottom: "2px",
left: "20px", left: "20px",
opacity: 0.6, opacity: 0.75,
zIndex: 9999, zIndex: 9999,
pointerEvents: "none", pointerEvents: "none",
}} }}
> >
<p <p
style={{ style={{
color: "#df0000", color: "#ff000d",
fontWeight: "bold", fontWeight: "bolder",
fontSize: "14px", fontSize: "14px",
pointerEvents: "none", pointerEvents: "none",
}} }}
@@ -1141,8 +1141,8 @@ function MainContent(): React.JSX.Element {
</p> </p>
<p <p
style={{ style={{
color: currentTheme?.mode === "dark" ? "#fff" : "#44474b", color: currentTheme?.mode === "dark" ? "#fff" : "#3e3e3e",
fontWeight: "bold", fontWeight: "bolder",
fontSize: "13px", fontSize: "13px",
paddingLeft: "5px", paddingLeft: "5px",
}} }}
@@ -1,5 +1,5 @@
import React, { useMemo } from "react" import React, { useMemo } from "react"
import { Alert, Card } from "antd" import { Card } from "antd"
import { import {
Builder, Builder,
Query, Query,
@@ -46,12 +46,6 @@ export const TriggerRuleBuilder: React.FC<TriggerRuleBuilderProps> = ({
style={{ marginBottom: "24px", backgroundColor: "var(--ss-card-bg)" }} style={{ marginBottom: "24px", backgroundColor: "var(--ss-card-bg)" }}
title={t("autoScore.whenTriggered")} title={t("autoScore.whenTriggered")}
> >
<Alert
type="info"
showIcon
style={{ marginBottom: "16px" }}
title={t("autoScore.triggerScheduleHint")}
/>
<div <div
className="query-builder-container" className="query-builder-container"
style={{ style={{