Skip to content

Commit 6150bf8

Browse files
committed
feat: add cursor pointer
1 parent 156f616 commit 6150bf8

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/components/CalendarHeader.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ const NavButton = styled.button`
4747
font-size: 1.2rem;
4848
border: none;
4949
padding: ${({ theme }) => theme.spacing.xs} ${({ theme }) => theme.spacing.sm};
50+
cursor: pointer;
5051
`;

src/components/TodoInput.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,5 @@ const AddButton = styled.button<{ disabled?: boolean }>`
6262
border: none;
6363
border-radius: ${({ theme }) => theme.radius.small};
6464
padding: ${({ theme }) => theme.spacing.sm} ${({ theme }) => theme.spacing.md};
65+
cursor: pointer;
6566
`;

src/components/TodoItem.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const Label = styled.label`
4444
const Checkbox = styled.input`
4545
width: ${({ theme }) => theme.spacing.xl};
4646
height: ${({ theme }) => theme.spacing.xl};
47+
cursor: pointer;
4748
`;
4849

4950
const Text = styled.span.withConfig({
@@ -64,4 +65,5 @@ const DeleteButton = styled.button`
6465
background: none;
6566
color: ${({ theme }) => theme.colors.danger};
6667
font-size: ${({ theme }) => theme.fontSize.small};
68+
cursor: pointer;
6769
`;

0 commit comments

Comments
 (0)