Skip to content

Commit

Permalink
[Fix/BAR-247] 참고하는 탭 boxShadow 조건부 노출 (#93)
Browse files Browse the repository at this point in the history
fix: boxShadow 조건부 노출
  • Loading branch information
miro-ring authored Mar 17, 2024
1 parent c912b30 commit 324eaa6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/domain/참고하는/components/FilterButtons.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ export const filterButtonWrapper = style([
borderRadius: '8px',
color: COLORS['Grey/700'],
verticalAlign: 'middle',
boxShadow: '0px 8px 15px 0px rgba(28, 28, 28, 0.08)',

':hover': {
boxShadow: '0px 8px 15px 0px rgba(28, 28, 28, 0.08)',
},
},
]);

export const activeFilterButtonsWrapper = style([
filterButtonWrapper,
{
zIndex: 10,
boxShadow: '0px 8px 15px 0px rgba(28, 28, 28, 0.08)',
},
]);

Expand Down

0 comments on commit 324eaa6

Please sign in to comment.