Skip to content

Commit

Permalink
Merge pull request #129 from js43o/fix-sidebar-bug
Browse files Browse the repository at this point in the history
[Fix] Sidebar 컴포넌트 위치 관련 버그 수정
  • Loading branch information
js43o authored Nov 22, 2023
2 parents 7e046d1 + e0bdb8e commit 387a7a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/frontend/src/components/commons/Sidebar/index.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ export const panel = style({
export const wrapper = style({
display: 'flex',
alignItems: 'center',
position: 'absolute',
top: 0,
position: 'fixed',
top: '8.6rem',
left: 0,
zIndex: 100,
height: '100%',
height: 'calc(100% - 8.6rem)',
transition: 'transform 0.5s',
});
6 changes: 3 additions & 3 deletions app/frontend/src/styles/reset.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ globalStyle(

globalStyle('html', {
fontSize: '62.5%',
height: '100%',
minHeight: '100vh',
});

globalStyle('body', {
lineHeight: 1,
height: '100%',
minHeight: '100vh',
});

globalStyle('#root', {
height: '100%',
minHeight: '100vh',
});

globalStyle('ol, ul', {
Expand Down

0 comments on commit 387a7a5

Please sign in to comment.