From 614b4a1d4e056fd4aea88e14ad1370ba5b0a3a14 Mon Sep 17 00:00:00 2001 From: Madalin Tache Date: Wed, 2 Oct 2019 00:48:54 +0300 Subject: [PATCH] Update window size (#1894) This small change attempts to fix #1727, as i just got my eye on it and figured i could simply fix it while seeing it. --- framework/core/js/src/forum/components/LogInButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/src/forum/components/LogInButton.js b/framework/core/js/src/forum/components/LogInButton.js index bb2160dde..5ece26747 100644 --- a/framework/core/js/src/forum/components/LogInButton.js +++ b/framework/core/js/src/forum/components/LogInButton.js @@ -13,7 +13,7 @@ export default class LogInButton extends Button { props.className = (props.className || '') + ' LogInButton'; props.onclick = function() { - const width = 600; + const width = 580; const height = 400; const $window = $(window);