fix: 结果窗口 520x700 并去除半透明遮罩实现无色透明

This commit is contained in:
2026-07-16 06:37:33 +08:00
parent 7bd49453a2
commit 98191b4372
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ export function openDialogWindow(type: string): BrowserWindow | null {
history: { width: 800, height: 600 }, history: { width: 800, height: 600 },
templates: { width: 640, height: 520 }, templates: { width: 640, height: 520 },
rubric: { width: 640, height: 700 }, rubric: { width: 640, height: 700 },
result: { width: 440, height: 560 } result: { width: 520, height: 700 }
} }
const size = sizes[type] || { width: 500, height: 500 } const size = sizes[type] || { width: 500, height: 500 }
+2 -2
View File
@@ -197,12 +197,12 @@ async function confirmScore() {
position: fixed; position: fixed;
inset: 0; inset: 0;
z-index: 99998; z-index: 99998;
background: rgba(0, 0, 0, 0.3); background: transparent;
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
} }
.drawer-panel { .drawer-panel {
width: 400px; width: 480px;
height: 100%; height: 100%;
background: #fff; background: #fff;
display: flex; display: flex;