SDA-4763 - Add additional px for min window size (#2239)

This commit is contained in:
Kiran Niranjan
2024-12-19 21:20:46 +05:30
committed by GitHub
parent 51f34d0962
commit 952bc767ec

View File

@@ -40,8 +40,8 @@ import {
const DEFAULT_POP_OUT_WIDTH = 400;
const DEFAULT_POP_OUT_HEIGHT = 600;
const MIN_WIDTH = 400;
const MIN_HEIGHT = 400;
const MIN_WIDTH = isWindowsOS ? 413 : 400;
const MIN_HEIGHT = isWindowsOS ? 405 : 400;
const CHILD_WINDOW_EVENTS = ['enter-full-screen', 'leave-full-screen'];