Skip to content

Commit

Permalink
style: 버튼 스타일링 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
juiuj committed Jan 8, 2025
1 parent f8cad8c commit 126a72a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,10 @@ export const NextButton = styled(ButtonStyle)<{ disabled: boolean }>`
color: ${({ disabled }) => (disabled ? '#a6a6a6' : 'white')};
cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')};
pointer-events: ${({ disabled }) => (disabled ? 'none' : 'auto')};
&:hover {
background-color: gray !important;
color: white !important;
border: none;
}
`;

0 comments on commit 126a72a

Please sign in to comment.