children overview styling

This commit is contained in:
azivner 2018-04-10 21:08:00 -04:00
parent b0c6d52461
commit 3d15450ffc
2 changed files with 10 additions and 2 deletions

View file

@ -24,6 +24,10 @@ class NoteShort {
}
async getChildBranches() {
if (!this.treeCache.children) {
return [];
}
const branches = [];
for (const child of this.treeCache.children[this.noteId]) {

View file

@ -298,11 +298,15 @@ div.ui-tooltip {
font-weight: bold;
font-size: large;
padding: 10px;
border: 1px solid black;
background: #f4f4f4;
width: 150px;
height: 95px;
margin-right: 20px;
margin-bottom: 20px;
border-radius: 15px;
overflow: hidden;
text-align: center;
}
.child-overview a {
color: #444;
}