style/delete note dialog: tweak layout

This commit is contained in:
Adorian Doran 2025-08-25 21:12:26 +03:00 committed by Elian Doran
parent e457e6a2f2
commit b9101c9fb2
No known key found for this signature in database

View File

@ -113,10 +113,10 @@ function DeletedNotes({ noteIdsToBeDeleted }: { noteIdsToBeDeleted: DeleteNotesP
if (noteIdsToBeDeleted.length) {
return (
<div className="delete-notes-list-wrapper">
<div className="delete-notes-list-wrapper" style={{paddingTop: "16px"}}>
<h4>{t("delete_notes.notes_to_be_deleted", { notesCount: noteIdsToBeDeleted.length })}</h4>
<ul className="delete-notes-list" style={{ maxHeight: "200px", overflow: "auto" }}>
<ul className="delete-notes-list" style={{ maxHeight: "200px", overflow: "auto"}}>
{noteLinks.map((link, index) => (
<li key={index} dangerouslySetInnerHTML={{ __html: link }} />
))}