Skip to content

Commit

Permalink
FIX: 로그테이블 높이 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
42inshin committed Mar 8, 2023
1 parent 89509fc commit bfd5001
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/calendar/AccMonth.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ watch(showLogs, () => {
justify-content: center;
align-items: center;
height: 45px;
margin: 20px 0 30px;
margin: 20px 0;
background-color: var(--black);
color: var(--white);
border-radius: 10px;
Expand Down
4 changes: 2 additions & 2 deletions src/components/calendar/LogTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,12 @@ watch(getDateLogs, () => {
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
height: calc(var(--vh, 1vh) * 100 - 514px);
height: calc(var(--vh, 1vh) * 100 - 504px);
padding: 0 10px;
}
.logs.smaller {
height: calc(var(--vh, 1vh) * 100 - 554px);
height: calc(var(--vh, 1vh) * 100 - 544px);
}
.logs .log {
Expand Down

0 comments on commit bfd5001

Please sign in to comment.