diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-07 09:02:26 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-07 09:02:26 -0400 |
commit | 928d27d2ad735d9c6c7ec4954a5a462181f482dd (patch) | |
tree | bb123b9a4175def7e35cc96874d48e0b98299129 /app/Template/comment | |
parent | 1dc947eac4c67770deb1ea04b2e7a63ceb6241a7 (diff) |
Reduce number of font size
Diffstat (limited to 'app/Template/comment')
-rw-r--r-- | app/Template/comment/show.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/comment/show.php b/app/Template/comment/show.php index 8419a14e..16a807bc 100644 --- a/app/Template/comment/show.php +++ b/app/Template/comment/show.php @@ -4,10 +4,10 @@ <div class="comment-title"> <?php if (! empty($comment['username'])): ?> - <span class="comment-username"><?= $this->text->e($comment['name'] ?: $comment['username']) ?></span> + <strong class="comment-username"><?= $this->text->e($comment['name'] ?: $comment['username']) ?></strong> <?php endif ?> - <span class="comment-date"><?= $this->dt->datetime($comment['date_creation']) ?></span> + <small class="comment-date"><?= $this->dt->datetime($comment['date_creation']) ?></small> </div> <div class="comment-content"> |