Skip to content

Commit

Permalink
/cashier フォーカス時の背景色を変化させる (#410)
Browse files Browse the repository at this point in the history
closes #356
  • Loading branch information
toririm authored Nov 2, 2024
1 parent 9531714 commit e3ca290
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pos/app/components/molecules/InputHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ type props = {

const InputHeader = memo(({ title, focus, number }: props) => {
return (
<div className="flex items-center p-3">
<div
className={cn(
"flex items-center rounded-xl p-3",
focus && "bg-purple-100",
)}
>
<Circle focus={focus} className="flex-initial">
{number}
</Circle>
Expand Down

0 comments on commit e3ca290

Please sign in to comment.