+
-
diff --git a/frontend/src/styles/hooks/useHpGlobalStyles.js b/frontend/src/styles/hooks/useHpGlobalStyles.js
index fe6e3bf..61315c7 100644
--- a/frontend/src/styles/hooks/useHpGlobalStyles.js
+++ b/frontend/src/styles/hooks/useHpGlobalStyles.js
@@ -89,6 +89,31 @@ export function useHpGlobalStyles() {
input:focus, select:focus { border-color: var(--hp-textGold) !important; box-shadow: 0 0 0 3px color-mix(in srgb, var(--hp-textGold) 16%, transparent); }
.hp-row { transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease; }
.hp-row:hover { box-shadow: inset 0 0 0 1px rgba(233,216,166,0.12); }
+ .hp-topbar-actions { margin-left: auto; }
+ .hp-admin-user-row { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr) 70px 76px 86px; }
+ .hp-admin-action { min-width: 0; }
+ @media (max-width: 600px) {
+ .hp-shell { padding: calc(12px + env(safe-area-inset-top)) 10px calc(28px + env(safe-area-inset-bottom)) !important; }
+ .hp-topbar { align-items: flex-start !important; padding: 12px !important; flex-wrap: wrap !important; }
+ .hp-topbar-actions { width: 100%; margin-left: 0; justify-content: stretch; }
+ .hp-topbar-user, .hp-topbar-new { flex: 1; min-height: 44px; }
+ .hp-topbar-user { justify-content: center; }
+ .hp-admin-user-row { grid-template-columns: minmax(0, 1fr) auto; gap: 5px 8px; padding: 11px !important; }
+ .hp-admin-name { grid-column: 1; grid-row: 1; }
+ .hp-admin-email { grid-column: 1; grid-row: 2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
+ .hp-admin-role { grid-column: 2; grid-row: 1; }
+ .hp-admin-status { grid-column: 2; grid-row: 2; }
+ .hp-admin-action { grid-column: 1 / -1; grid-row: 3; width: 100%; min-height: 42px; }
+ .hp-row { grid-template-columns: minmax(0, 1fr) 42px 62px !important; gap: 7px !important; padding: 12px 11px !important; }
+ .hp-row button { min-height: 40px; }
+ button { min-height: 42px; }
+ input, select { min-height: 44px; box-sizing: border-box; }
+ .hp-topbar + * { margin-top: 12px !important; }
+ }
+ @media (max-width: 360px) {
+ .hp-row { grid-template-columns: minmax(0, 1fr) 38px 56px !important; font-size: 14px; }
+ .hp-topbar { gap: 8px !important; }
+ }
`;
document.head.appendChild(style);
}, []);
diff --git a/frontend/src/styles/styles.js b/frontend/src/styles/styles.js
index 956cd65..570d230 100644
--- a/frontend/src/styles/styles.js
+++ b/frontend/src/styles/styles.js
@@ -213,7 +213,7 @@ export const styles = {
background: "linear-gradient(145deg, rgba(27,25,30,0.98), rgba(11,11,14,0.98))",
boxShadow: "0 24px 70px rgba(0,0,0,0.78), inset 0 1px 0 rgba(255,255,255,0.07)",
padding: 16,
- maxHeight: "calc(100vh - 32px)",
+ maxHeight: "calc(100dvh - 32px)",
overflow: "auto",
},
modalHeader: {