Tweak styling

This commit is contained in:
Trevor Slocum 2019-03-29 00:29:03 -07:00
parent b1dff6f895
commit 1227cbf746
1 changed files with 2 additions and 2 deletions

View File

@ -230,9 +230,9 @@ function render() {
NoteBody += '<ul style="margin-left: 7px;">';
for (var nid in Notebooks[nbid].Notes) {
NoteBody += '<li onclick="viewNote(\'' + nbid + '\', \'' + nid + '\')"><h2><a href="#" class="internal">' + Notebooks[nbid].Notes[nid].Label + '</a></h2></li>';
NoteBody += '<li onclick="viewNote(\'' + nbid + '\', \'' + nid + '\')"><h2 style="font-weight: bold;"><a href="#" class="internal">' + Notebooks[nbid].Notes[nid].Label + '</a></h2></li>';
}
NoteBody += '<li style="list-style: none;"><h2><a href="#" class="internal">+ Add note</a></h2></li>';
NoteBody += '<li style="list-style: none;"><h2><a href="#" class="internal">+ New</a></h2></li>';
NoteBody += '</ul>';
}
} else {