Skip to content

Commit 9026cc8

Browse files
committed
feat: QuizStep 스타일 수정 - 버튼 hover 효과 제거
- QuizStep 컴포넌트의 버튼에서 hover 시 배경색 변경 효과를 제거하여 UI를 간소화함 - 사용자 경험을 개선하기 위한 작업임
1 parent a59a8ad commit 9026cc8

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

apps/web/src/pages/MemeQuizPage/components/QuizStep/QuizStep.styles.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,6 @@ const Button = styled.button<{ isSelected?: boolean }>`
8080
isSelected ? theme.palette.main.pink[95] : theme.palette.gray['gray-9']};
8181
cursor: pointer;
8282
transition: all 0.2s ease-in-out;
83-
84-
&:hover {
85-
background-color: ${({ theme, isSelected }) =>
86-
isSelected ? theme.palette.main.pink[95] : theme.palette.gray['gray-8']};
87-
}
8883
`;
8984

9085
const ButtonIcon = styled.div<{ isSelected?: boolean }>`

0 commit comments

Comments
 (0)