diff --git a/frontend/index.html b/frontend/index.html index 166279c..031fe88 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -131,6 +131,13 @@ textarea { resize: vertical; min-height: 120px; } .issue-sheet-header { display:flex; align-items:center; justify-content:space-between; gap:10px; } .issue-sheet-header button { min-height:44px; } .issue-sheet-content { overflow-wrap:anywhere; white-space:pre-wrap; } +#edit-issue-content { min-height:44px; width:100%; } +.issue-edit-form { display:grid; gap:8px; max-width:100%; margin:12px 0; } +.issue-edit-form label { display:grid; gap:6px; min-width:0; } +.issue-edit-form input, .issue-edit-form textarea { box-sizing:border-box; width:100%; max-width:100%; } +.issue-edit-form textarea { min-height:132px; resize:vertical; } +.issue-edit-form input, .issue-edit-form textarea, .issue-edit-form button { min-height:44px; } +.issue-edit-actions { display:grid; grid-template-columns:1fr 1fr; gap:8px; } .issue-comment { padding:10px 0; border-bottom:1px solid #1b2d45; } .issue-comment-composer { display:grid; gap:8px; margin-top:16px; } .issue-comment-composer button { min-height:44px; width:100%; } @@ -346,7 +353,7 @@ textarea { resize: vertical; min-height: 120px; }