diff --git a/src/entities/account/ui/user-manage-auth-list.tsx b/src/entities/account/ui/user-manage-auth-list.tsx index 0aec3d4..bad1d40 100644 --- a/src/entities/account/ui/user-manage-auth-list.tsx +++ b/src/entities/account/ui/user-manage-auth-list.tsx @@ -5,11 +5,18 @@ export const UserManageAuthList = ({ userItems, mid }: UserManageAuthListProps) => { - console.log("UserManageAuthList", userItems, mid); return ( -
+
{userItems.map((item) => ( - { return ( <> -
-
- +
+
+
+ +
+ +
등록 현황
-
등록 현황
- { (!!userItems && userItems.length > 0) && - - } -
-
+ +
+ diff --git a/src/shared/ui/assets/css/style.css b/src/shared/ui/assets/css/style.css index f384780..2b0a0d5 100644 --- a/src/shared/ui/assets/css/style.css +++ b/src/shared/ui/assets/css/style.css @@ -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 */ } \ No newline at end of file