diff --git a/app/static/style.css b/app/static/style.css index bb153f7..8ec1154 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -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; } diff --git a/app/templates/admin_invites.html b/app/templates/admin_invites.html index 838411e..f6876db 100644 --- a/app/templates/admin_invites.html +++ b/app/templates/admin_invites.html @@ -15,12 +15,12 @@