pull/1142/head
Mikunj 4 years ago
parent ebc768887f
commit a351ce6c30

@ -219,7 +219,10 @@ function getWindowSize() {
const { minWidth, minHeight, defaultWidth, defaultHeight } = WINDOW_SIZE;
// Ensure that the screen can fit within the default size
const width = Math.min(defaultWidth, Math.max(minWidth, screenSize.width));
const height = Math.min(defaultHeight, Math.max(minHeight, screenSize.height));
const height = Math.min(
defaultHeight,
Math.max(minHeight, screenSize.height)
);
return { width, height, minWidth, minHeight };
}

@ -49,7 +49,6 @@
padding-bottom: 20px;
}
&-close-button {
display: flex;
align-items: center;
@ -274,5 +273,3 @@
.registration-content-centered {
text-align: center;
}

Loading…
Cancel
Save