Skip to content

Commit

Permalink
[Style] : 관리자 레이아웃 모든 페이지에서 헤더 고정해서 스크롤 되도록 변경 #677
Browse files Browse the repository at this point in the history
  • Loading branch information
raehy19 committed Feb 24, 2023
1 parent 5a55488 commit e5847aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions styles/admin/Layout.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
justify-content: space-between;
align-items: center;
width: 100%;
height: 4.5rem;
min-height: 4rem;
padding: 0 1.5rem;
background: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.title {
Expand Down Expand Up @@ -49,5 +49,6 @@

.pageContent {
width: 100%;
height: 100%;
height: calc(100vh - 4rem);
overflow-y: scroll;
}
1 change: 0 additions & 1 deletion styles/admin/SideNav.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
min-width: 10rem;
height: 100%;
padding: 0.5rem;
margin-top: 0.2rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

Expand Down

0 comments on commit e5847aa

Please sign in to comment.