Skip to content

Commit

Permalink
✨ Feat: 글자수정
Browse files Browse the repository at this point in the history
feat: 글자수정
  • Loading branch information
seochan99 committed Feb 14, 2024
1 parent 63db15f commit 0bb69ef
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/views/auth/auth_card_widget.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'package:earlips/utilities/style/color_styles.dart';
import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';

Expand Down Expand Up @@ -31,11 +32,15 @@ class AuthCard extends StatelessWidget {
const SizedBox(width: 20),
SvgPicture.asset(
iconPath,
height: 30,
height: label == "구글 계정으로 로그인" ? 30 : 25,
width: 30,
),
const SizedBox(width: 20),
Text(label, style: const TextStyle(fontSize: 16)),
Text(label,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
color: ColorSystem.black)),
],
),
),
Expand Down

0 comments on commit 0bb69ef

Please sign in to comment.