Skip to content

Commit 19302f7

Browse files
authored
Merge pull request #564 from depromeet/develop
배포용 PR
2 parents b1430fe + 634e539 commit 19302f7

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/components/BottomSheet/BottomSheet.tsx

+11-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function BottomSheet({ children, isDraggable = false, onClickOutside, isShowing,
2222
return (
2323
<SpringBottomSheet
2424
open={isShowing}
25-
className={css(bottomSheetCss, isDraggable ? {} : nonDraggableCss)}
25+
className={css(bottomSheetCss, isDraggable ? {} : nonDraggableCss, zIndexCss)}
2626
onDismiss={onClickOutside}
2727
>
2828
<div className={headerWrapperCss}>{headerElement}</div>
@@ -40,6 +40,16 @@ const nonDraggableCss = {
4040
display: 'none',
4141
},
4242
};
43+
44+
const zIndexCss = {
45+
'& [data-rsbs-overlay]': {
46+
zIndex: '100 !important',
47+
},
48+
'& [data-rsbs-backdrop]': {
49+
zIndex: '100 !important',
50+
},
51+
};
52+
4353
const contentCss = css({
4454
padding: '0 16px',
4555
});

src/components/Header/HeaderBase.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const wrapperCss = flex({
5757
left: 0,
5858
right: 0,
5959
top: 0,
60-
zIndex: 3,
60+
zIndex: 'appBar',
6161
position: 'fixed',
6262
display: 'flex',
6363
alignItems: 'center',

0 commit comments

Comments
 (0)