0
I have Google and Facebook social login button working in my application, but I would like to set both round.
I’m using the default setting for both.
<div id="my-signin2" class="mx-auto"></div>
function renderButton() {
          gapi.signin2.render('my-signin2', {
            'scope': 'profile email',
            'width': 220,
            'height': 40,
            'longtitle': true,
            'theme': 'dark',
            'onsuccess': onSuccess
          });
        };
<div class="fb-login-button" data-scope="public_profile,email" data-onlogin="checkLoginState()" data-width="220" data-max-rows="1" data-size="large" data-button-type="login_with" data-show-faces="false" data-auto-logout-link="true" data-use-continue-as="false">Sign in with Facebook</div>