Skip to content

Commit cdeaca4

Browse files
authored
fix(web): add vertical padding to social login buttons (calcom#28767)
1 parent 54f36af commit cdeaca4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/modules/auth/login-view.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export default function Login({
218218
<div className="flex flex-col gap-2">
219219
{isGoogleLoginEnabled && (
220220
<Button
221-
className="w-full"
221+
className="w-full py-1"
222222
disabled={formState.isSubmitting}
223223
data-testid="google"
224224
onClick={async (e) => {
@@ -236,7 +236,7 @@ export default function Login({
236236
{isOutlookLoginEnabled && (
237237
<Button
238238
variant="outline"
239-
className="w-full"
239+
className="w-full py-1"
240240
data-testid="microsoft"
241241
onClick={async (e) => {
242242
e.preventDefault();

0 commit comments

Comments
 (0)