diff --git a/framework/core/js/forum/src/components/LogInButton.js b/framework/core/js/forum/src/components/LogInButton.js index f936204fb..ad71b5f57 100644 --- a/framework/core/js/forum/src/components/LogInButton.js +++ b/framework/core/js/forum/src/components/LogInButton.js @@ -13,8 +13,8 @@ export default class LogInButton extends Button { props.className = (props.className || '') + ' LogInButton'; props.onclick = function() { - const width = 1000; - const height = 500; + const width = 600; + const height = 400; const $window = $(window); window.open(app.forum.attribute('baseUrl') + props.path, 'logInPopup', diff --git a/framework/core/less/forum/LogInButton.less b/framework/core/less/forum/LogInButton.less index 9bc57142a..992281aca 100644 --- a/framework/core/less/forum/LogInButton.less +++ b/framework/core/less/forum/LogInButton.less @@ -1,5 +1,11 @@ .LogInButton { &:extend(.Button--block); + + .Button-icon { + font-size: 18px; + vertical-align: -1px; + margin-right: 5px; + } } .LogInButtons { width: 200px;