fix(admin-invites): stack create form fields vertically, unify row height and spacing

This commit is contained in:
2026-07-06 08:12:25 +08:00
parent b66527b6d8
commit b4bec6e5e6
2 changed files with 13 additions and 12 deletions

View File

@@ -288,10 +288,11 @@ code { background: var(--bg); padding: .15rem .4rem; border-radius: 4px; font-si
/* Admin invite form */
.admin-invite-form { display: flex; flex-wrap: wrap; gap: .5rem; align-items: flex-end; }
.aif-row { display: flex; flex-direction: column; gap: .3rem; }
.aif-field { display: flex; flex-direction: column; gap: .15rem; }
.aif-grow { flex: 1 1 200px; min-width: 0; }
.aif-label { font-size: .75rem; color: var(--text-muted); }
.aif-input, .aif-select { padding: .4rem .6rem; border: 1px solid var(--border); border-radius: 6px; font-size: .85rem; background: #fff; }
.aif-label { font-size: .8rem; color: var(--text-muted); line-height: 1.2; }
.aif-input, .aif-select { width: 100%; padding: .45rem .65rem; border: 1px solid var(--border); border-radius: 6px; font-size: .9rem; background: #fff; line-height: 1.3; }
.aif-input:focus, .aif-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.aif-short { width: 80px; }
.aif-date { width: 180px; }