输入框, svg, 弹窗样式迁移

This commit is contained in:
lutinglt
2025-07-03 17:50:46 +08:00
parent 3015ce8696
commit 7bc47d0720
14 changed files with 109 additions and 121 deletions

11
styles/public/svg.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { css, themeVars } from "src/types/vars";
// 关闭工单按钮设置为紫色
export const issueClosed = css`
.text.red .svg,
.text.red.svg {
&.octicon-issue-closed {
color: ${themeVars.github.fgColor.done} !important;
}
}
`;