Skip to content

Commit

Permalink
Merge pull request #125 from Goorm-Lucky7/dev
Browse files Browse the repository at this point in the history
Bug: navbar로 인한 여백 생성 제거
  • Loading branch information
kangsinbeom authored Jul 5, 2024
2 parents 091af9c + b55a87e commit 6d42622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/navbar/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const Container = styled.div<{ isExpand: boolean }>`
display: ${({ isExpand }) => (isExpand ? 'none' : 'block')};
}
.buttonBox {
visibility: ${({ isExpand }) => (isExpand ? 'visible' : 'hidden')};
display: ${({ isExpand }) => (isExpand ? 'flex' : 'none')};
transform: ${({ isExpand }) => (isExpand ? 'translateX(0)' : 'translateX(120%)')};
z-index: var(--high-zindex);
position: absolute;
Expand Down

0 comments on commit 6d42622

Please sign in to comment.