Skip to content

Commit

Permalink
πŸ› μ‚¬μ΄λ“œλ°” μœ„μΉ˜ 버그 μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
js43o committed Nov 21, 2023
1 parent ca6f2c5 commit e0bdb8e
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 e0bdb8e

Please sign in to comment.