사용자 관리 페이지 스크롤 레이아웃 개선

- UserManageAuthList: 스크롤바 숨김 처리 및 스크롤 영역 설정
- UserManageWrap: flexbox 레이아웃 적용으로 사용자 추가 버튼 하단 고정
- 스크롤바 숨김 유틸리티 클래스 추가
- console.log 제거

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-10-17 16:56:38 +09:00
parent 35f3c694be
commit 3886e93b49
3 changed files with 48 additions and 30 deletions

View File

@@ -2397,13 +2397,13 @@ div .credit-period {
bottom: 0;
left: 0;
right: 0;
padding: 20px 26px 16px 26px;
padding: 20px 26px calc(env(safe-area-inset-bottom, 0px) + 26px) 26px;
z-index: 500;
background: var(--color-white);
}
.apply-row.bottom-padding {
bottom: 70px !important;
bottom: calc(env(safe-area-inset-bottom) + 26px) !important;
}
.apply-row.two-button button:first-child {
@@ -6173,4 +6173,9 @@ ul.txn-amount-detail li span:last-child {
border-radius: 4px;
background-color: var(--color-white);
transition: all 0.2s ease;
}
/* Scrollbar hide utility class */
.scrollbar-hide::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}