Fix mobile favorites editor layout

This commit is contained in:
2026-06-12 08:45:34 -07:00
parent 20f6d4d192
commit 562f2b8612
2 changed files with 23 additions and 8 deletions

View File

@@ -1491,8 +1491,12 @@ function createFavoriteManagerRow(item, index) {
remove.dataset.removeFavorite = String(index);
remove.textContent = 'Remove';
const actions = document.createElement('div');
actions.className = 'favorite-actions';
actions.append(edit, remove);
summary.append(title, url);
row.append(summary, edit, remove);
row.append(summary, actions);
return row;
}