Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/features/bucket-create/components/SelectCategory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const SelectCategory = ({
{ id: 'TRIP', label: '여행', color: 'pink' },
{ id: 'HOBBY', label: '취미', color: 'blue' },
{ id: 'HEALTH', label: '건강', color: 'yellow' },
{ id: 'FAMILY', label: '가족지원', color: 'green' },
{ id: 'FAMILY', label: '가족', color: 'green' },
];
const handleSelectCategory = (str: BucketCategoryType) => {
setCategory(str);
Expand Down
2 changes: 1 addition & 1 deletion src/features/family/components/FamilyHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const FamilyHome = () => {
<div className="h-full w-full pt-12">
<div className="px-6">
<h1 className="font-hana-bold text-text-primary !mb-8 text-4xl">
가족
{groupInfo.groupName}
</h1>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const FamilyGroupEmptyStateCard = ({

<div
onClick={onInviteClick}
className="bg-btn-default-bg mt-20 flex h-[110px] w-full cursor-pointer gap-3 rounded-lg pt-6 pr-9 pb-5 pl-5"
className="bg-btn-default-bg mt-20 flex h-[110px] w-full cursor-pointer gap-3 rounded-lg pt-6 pb-5 pl-8"
>
<img src={inviteSvg} />
<div className="flex flex-col gap-1">
Expand All @@ -46,7 +46,7 @@ const FamilyGroupEmptyStateCard = ({

<div
onClick={onCreateClick}
className="bg-btn-default-bg mt-9 flex h-[110px] w-full cursor-pointer gap-3 rounded-lg border-2 border-dashed border-[var(--color-line)] pt-5 pr-12 pb-6 pl-8"
className="bg-btn-default-bg mt-9 flex h-[110px] w-full cursor-pointer gap-3 rounded-lg border-2 border-dashed border-[var(--color-line)] pt-5 pb-6 pl-8"
>
<img src={plusSvg} />
<div className="flex flex-col gap-1">
Expand Down
Loading