Handle empty description in about and align things to top

This commit is contained in:
Anders Rune Jensen
2017-12-26 15:34:09 +01:00
parent 5dbcb1c135
commit b6ee22a69b
+2 -2
View File
@@ -123,7 +123,7 @@ function renderAbout(opts, about, showAllHTML = "") {
opts.mentions = {}; opts.mentions = {};
var figCaption = h('figcaption'); var figCaption = h('figcaption');
figCaption.innerHTML = 'Feed of ' + about.name + '<br>' + marked(String(about.description), opts.marked); figCaption.innerHTML = 'Feed of ' + about.name + '<br>' + marked(String(about.description || ''), opts.marked);
return pull( return pull(
pull.map(renderMsg.bind(this, opts, '')), pull.map(renderMsg.bind(this, opts, '')),
wrap(toolTipTop() + '<main>' + wrap(toolTipTop() + '<main>' +
@@ -221,7 +221,7 @@ var styles = `
border-radius: 2px; margin-right: 10px; border-radius: 2px; margin-right: 10px;
} }
article > header > figure > figcaption { article > header > figure > figcaption {
display: flex; flex-direction: column; justify-content: space-around; display: flex; flex-direction: column;
} }
.ssb-avatar-name { font-size: 1.2em; font-weight: bold; } .ssb-avatar-name { font-size: 1.2em; font-weight: bold; }
time a { color: #868e96; } time a { color: #868e96; }