Skip to content

Commit

Permalink
refactor: 예약조건이 선택됐을 때 스타일 변경 (#856)
Browse files Browse the repository at this point in the history
  • Loading branch information
yujo11 authored Aug 28, 2022
1 parent f85dd42 commit 466a58b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions frontend/src/pages/ManagerSpaceEditor/units/Form.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,11 @@ export const TabListItem = styled.li<TabListItemProps>`
border-radius: 0.25rem;
background-color: ${({ isPrimary, theme }) => isPrimary && theme.primary[400]};
color: ${({ isPrimary, theme }) => isPrimary && theme.white};
svg {
fill: ${({ isPrimary, theme }) => isPrimary && theme.white};
}
`;

export const TabTextButton = styled(Button)`
Expand All @@ -155,10 +160,10 @@ export const TabRemoveButton = styled(IconButton)`
margin-right: 4px;
&:hover {
background-color: ${({ theme }) => theme.gray[300]};
background-color: ${({ theme }) => theme.gray[200]};
svg {
fill: #fff;
fill: ${({ theme }) => theme.black[400]};
}
}
Expand Down

0 comments on commit 466a58b

Please sign in to comment.