Skip to content

Commit

Permalink
style: add margin in UserInfoMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
yougyung committed Sep 12, 2024
1 parent 7b75357 commit 235ffe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ui/user/user-info-card/user-info-message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface UserInfoMessageProps {
function UserInfoMessage({ studentName, remainCredit }: UserInfoMessageProps) {
return (
<p className="font-bold text-sm md:text-xl">
{studentName}님,
<span className="mr-1">{studentName}님,</span>
{remainCredit > 0 ? (
<>
졸업까지
Expand Down

0 comments on commit 235ffe5

Please sign in to comment.