As you can see from the photo, Facebook SignIn button does not have the same height of the Google SignIn button. How can I make FB button the same height as the other one? Sorry for the stupid question but I am totally new to this world. Photo is here: https://ibb.co/vLSFgH3
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:gravity="center"
android:orientation="horizontal">
<com.google.android.gms.common.SignInButton
android:id="@+id/google_button"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<com.facebook.login.widget.LoginButton
android:id="@+id/fb_button"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:textSize="15sp" />
</LinearLayout>