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
4 changes: 2 additions & 2 deletions src/components/gauge/block-gauge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ const BlockGauge = ({
"flex-1 shrink-0 basis-0",
index === 0 && "rounded-l-md",
index === 5 && "rounded-r-md",
index < level ? color : "bg-neutral200",
index < level ? color : "bg-gray-200",
onChange && [
"cursor-pointer hover:opacity-80",
"focus:outline-none focus:ring-2 focus:ring-gray600",
"focus:outline-none focus:ring-2 focus:ring-gray-600",
]
)}
onClick={() => handleClick(index)}
Expand Down
6 changes: 0 additions & 6 deletions src/components/taste/Taste.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,6 @@ export const InteractiveWineProfile: Story = {
/>
</ResponsiveTasteWrapper>
</div>

{/* 현재 설정값 표시 */}
<div className="mt-6 rounded-lg bg-gray-50 p-3 text-xs">
<strong>현재 와인 프로필:</strong> 바디감 {bodyLevel}, 탄닌{" "}
{tanninLevel}, 당도 {sweetnessLevel}, 산미 {acidityLevel}
</div>
</div>
);
},
Expand Down
4 changes: 2 additions & 2 deletions src/components/taste/Taste.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Taste = ({ type, data, taste, onChange }: TasteProps) => {
{/* 왼쪽: type */}
<div
className={cn(
"bg-neutral200 truncate rounded-md px-1 py-1 text-center text-body-sm text-gray600",
"truncate rounded-md bg-gray-200 px-1 py-1 text-center text-body-sm text-gray-600",
"w-[53px] tablet:w-[70px] pc:w-[70px]"
)}
title={type}
Expand All @@ -41,7 +41,7 @@ const Taste = ({ type, data, taste, onChange }: TasteProps) => {
className={cn(
"truncate px-1 py-1 text-center text-body-sm",
"w-[68px] tablet:w-[80px] pc:w-[80px]",
data === 0 ? "text-neutral400" : "text-black"
data === 0 ? "text-gray-400" : "text-black"
)}
title={taste}
>
Expand Down