diff --git a/backend/core/playwright_manager.py b/backend/core/playwright_manager.py
index c888f19..3ab4a58 100644
--- a/backend/core/playwright_manager.py
+++ b/backend/core/playwright_manager.py
@@ -148,7 +148,7 @@ class PlaywrightManager:
cls._vnc_context = await cls._vnc_browser.new_context(
user_agent=cls.DEFAULT_USER_AGENT,
- viewport={"width": 1200, "height": 750}
+ viewport={"width": 1920, "height": 1000}
)
cls._vnc_page = await cls._vnc_context.new_page()
diff --git a/frontend/src/pages/Login.tsx b/frontend/src/pages/Login.tsx
index df3bc89..4e85315 100644
--- a/frontend/src/pages/Login.tsx
+++ b/frontend/src/pages/Login.tsx
@@ -147,10 +147,11 @@ export const Login: React.FC = () => {
{/* VNC Iframe */}
-
+
@@ -189,8 +190,8 @@ export const Login: React.FC = () => {
onClick={handleVncLogin}
disabled={isLoading}
className={`w-full py-4 rounded-2xl font-bold text-base flex items-center justify-center gap-3 transition-all ${isLoading
- ? 'bg-gray-700 text-gray-400 cursor-not-allowed'
- : 'bg-gradient-to-r from-pink-500 to-orange-500 text-white shadow-lg shadow-pink-500/25 hover:shadow-pink-500/40 active:scale-[0.98]'
+ ? 'bg-gray-700 text-gray-400 cursor-not-allowed'
+ : 'bg-gradient-to-r from-pink-500 to-orange-500 text-white shadow-lg shadow-pink-500/25 hover:shadow-pink-500/40 active:scale-[0.98]'
}`}
>
{isLoading ? (
@@ -235,8 +236,8 @@ export const Login: React.FC = () => {
onClick={handleManualLogin}
disabled={!sessionId.trim() || isLoading}
className={`w-full py-2.5 rounded-lg font-medium text-sm transition-all ${sessionId.trim() && !isLoading
- ? 'bg-white/10 hover:bg-white/20 text-white'
- : 'bg-white/5 text-gray-600 cursor-not-allowed'
+ ? 'bg-white/10 hover:bg-white/20 text-white'
+ : 'bg-white/5 text-gray-600 cursor-not-allowed'
}`}
>
Connect
diff --git a/supervisord.conf b/supervisord.conf
index d556cd7..e07e8c2 100644
--- a/supervisord.conf
+++ b/supervisord.conf
@@ -5,7 +5,7 @@ logfile_maxbytes=0
loglevel=info
[program:xvfb]
-command=Xvfb :99 -screen 0 1280x800x24
+command=Xvfb :99 -screen 0 1920x1080x24
autorestart=true
priority=100
stdout_logfile=/dev/stdout