diff --git a/apps/desktop/resources/Frame2101.png b/apps/desktop/resources/Frame2101.png new file mode 100644 index 00000000000..84f3ad7c810 Binary files /dev/null and b/apps/desktop/resources/Frame2101.png differ diff --git a/apps/desktop/resources/Frame2101.svg b/apps/desktop/resources/Frame2101.svg new file mode 100644 index 00000000000..d36e4e6532d --- /dev/null +++ b/apps/desktop/resources/Frame2101.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/desktop/src/app/components/passkeys.component.ts b/apps/desktop/src/app/components/passkeys.component.ts index dcfd2bd5a45..f2cffd88934 100644 --- a/apps/desktop/src/app/components/passkeys.component.ts +++ b/apps/desktop/src/app/components/passkeys.component.ts @@ -9,13 +9,15 @@ export type BrowserSyncVerificationDialogParams = { @Component({ standalone: true, template: ` - +
+ +
`, imports: [JslibModule], }) diff --git a/apps/desktop/src/main/tray.main.ts b/apps/desktop/src/main/tray.main.ts index 7656cd8922d..d8d160adbca 100644 --- a/apps/desktop/src/main/tray.main.ts +++ b/apps/desktop/src/main/tray.main.ts @@ -212,10 +212,10 @@ export class TrayMain { const existingWin = this.windowMain.win; existingWin.setBounds({ - width: 400, - height: 600, + width: 500, + height: 400, }); - existingWin.setSize(400, 600, true); + existingWin.setSize(450, 450, true); existingWin.setWindowButtonVisibility(false); existingWin.resizable = false; await existingWin.loadURL( diff --git a/apps/desktop/src/main/window.main.ts b/apps/desktop/src/main/window.main.ts index f12e9826515..8e7cfdfc455 100644 --- a/apps/desktop/src/main/window.main.ts +++ b/apps/desktop/src/main/window.main.ts @@ -182,8 +182,8 @@ export class WindowMain { this.win = new BrowserWindow({ width: this.windowStates[mainWindowSizeKey].width, height: this.windowStates[mainWindowSizeKey].height, - minWidth: 680, - minHeight: 500, + minWidth: 400, + minHeight: 400, x: this.windowStates[mainWindowSizeKey].x, y: this.windowStates[mainWindowSizeKey].y, title: app.name, @@ -205,8 +205,8 @@ export class WindowMain { } else { // this.win = new BrowserWindow({ - width: 400, - height: 600, + width: 450, + height: 450, resizable: false, icon: null, center: true,