mirror of
https://github.com/SECTL/SecScore.git
synced 2026-07-19 06:04:22 +08:00
fix: 主页右边滚动条改为透明
This commit is contained in:
+5
-5
@@ -1124,15 +1124,15 @@ function MainContent(): React.JSX.Element {
|
||||
display: "flex",
|
||||
bottom: "2px",
|
||||
left: "20px",
|
||||
opacity: 0.6,
|
||||
opacity: 0.75,
|
||||
zIndex: 9999,
|
||||
pointerEvents: "none",
|
||||
}}
|
||||
>
|
||||
<p
|
||||
style={{
|
||||
color: "#df0000",
|
||||
fontWeight: "bold",
|
||||
color: "#ff000d",
|
||||
fontWeight: "bolder",
|
||||
fontSize: "14px",
|
||||
pointerEvents: "none",
|
||||
}}
|
||||
@@ -1141,8 +1141,8 @@ function MainContent(): React.JSX.Element {
|
||||
</p>
|
||||
<p
|
||||
style={{
|
||||
color: currentTheme?.mode === "dark" ? "#fff" : "#44474b",
|
||||
fontWeight: "bold",
|
||||
color: currentTheme?.mode === "dark" ? "#fff" : "#3e3e3e",
|
||||
fontWeight: "bolder",
|
||||
fontSize: "13px",
|
||||
paddingLeft: "5px",
|
||||
}}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import React, { useMemo } from "react"
|
||||
import { Alert, Card } from "antd"
|
||||
import { Card } from "antd"
|
||||
import {
|
||||
Builder,
|
||||
Query,
|
||||
@@ -46,12 +46,6 @@ export const TriggerRuleBuilder: React.FC<TriggerRuleBuilderProps> = ({
|
||||
style={{ marginBottom: "24px", backgroundColor: "var(--ss-card-bg)" }}
|
||||
title={t("autoScore.whenTriggered")}
|
||||
>
|
||||
<Alert
|
||||
type="info"
|
||||
showIcon
|
||||
style={{ marginBottom: "16px" }}
|
||||
title={t("autoScore.triggerScheduleHint")}
|
||||
/>
|
||||
<div
|
||||
className="query-builder-container"
|
||||
style={{
|
||||
|
||||
Reference in New Issue
Block a user