Increase auth popup height to 600px

This commit is contained in:
jelveh
2025-12-29 23:24:09 -08:00
parent 98d0c25ce8
commit 58c8ec7f43

View File

@@ -434,7 +434,7 @@ class PuterDialog extends (globalThis.HTMLElement || Object) { // It will fall b
// Add event listener to the button
this.shadowRoot.querySelector('#launch-auth-popup')?.addEventListener('click', () => {
let w = 600;
let h = 500;
let h = 600;
let title = 'Puter';
var left = (screen.width / 2) - (w / 2);
var top = (screen.height / 2) - (h / 2);
@@ -454,7 +454,7 @@ class PuterDialog extends (globalThis.HTMLElement || Object) { // It will fall b
open () {
if ( this.hasUserActivation() ) {
let w = 600;
let h = 500;
let h = 600;
let title = 'Puter';
var left = (screen.width / 2) - (w / 2);
var top = (screen.height / 2) - (h / 2);