From 1292c6591b39b24bfc4864258d3dee75fc904dfd Mon Sep 17 00:00:00 2001 From: Zichao Lin Date: Tue, 7 Jul 2026 13:28:24 +0800 Subject: [PATCH] fix(profiles): allow existing profiles to edit country field in rename form --- app/static/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/static/style.css b/app/static/style.css index 49d01a1..92cf5b4 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -88,7 +88,8 @@ input[type="text"] + label, input[type="password"] + label, input[type="datetime .form-row .btn { white-space: nowrap; flex-shrink: 0; } .filter-bar .form-row select { flex: 0 0 auto; width: auto; } .inline-form { margin-bottom: 1.25rem; } -.rename-form { display: inline-flex; gap: .35rem; align-items: center; margin-right: .5rem; } +.rename-form { display: inline-flex; gap: .35rem; align-items: center; margin-right: .5rem; flex-wrap: wrap; } +.rename-form input { flex: 1; min-width: 0; } .nickname-display { display: inline; } .nickname-edit { display: inline-flex; gap: .35rem; align-items: center; } .nickname-edit input[type="text"] { width: 140px; flex: none; }