UI: Blog title in timeline more prominent

This commit is contained in:
Pablo Vazquez 2019-02-02 04:01:56 +01:00
parent f531685ba8
commit ecfd27094c

View File

@ -4,7 +4,7 @@ export class Posts extends NodesBase {
static create$item(post) { static create$item(post) {
let content = []; let content = [];
let $title = $('<div>') let $title = $('<div>')
.addClass('h1 text-uppercase mt-4 mb-3') .addClass('h1 text-uppercase font-weight-bold d-block pt-5 pb-2')
.text(post.name); .text(post.name);
content.push($title); content.push($title);
let $post = $('<div>') let $post = $('<div>')