CSS cleanup

This commit is contained in:
video-prize-ranch
2022-12-20 19:35:48 -05:00
parent 82c360baa0
commit e82b47a729
24 changed files with 93 additions and 163 deletions

View File

@@ -1,4 +1,4 @@
<div class="comment">
<div class="comment flex flex-col">
<div class="comment__user">
{{#noteq this.User.Username "[deleted]"}}
<img src="{{this.User.Avatar}}" class="pfp" width="24" height="24" loading="lazy">
@@ -7,20 +7,20 @@
</a>
{{/noteq}}
{{#equal this.User.Username "[deleted]"}}
<p class="comment__user__username"><b>[deleted]</b></p>
<p class="comment__user__username"><b>[deleted]</b></p>
{{/equal}}
</div>
<div>
{{{this.Comment}}}
<p>
<p>{{{this.Comment}}}</p>
<div>
<span title="{{this.CreatedAt}}">{{this.RelTime}}</span>
{{#if this.DeletedAt}}
<span class="comment__updatedDate">(deleted {{this.DeletedAt}})</span>
{{/if}}
|
|
<img class="icon" src="/static/icons/chevron-up.svg" alt="Likes"> {{this.Upvotes}}
<img class="icon" src="/static/icons/chevron-down.svg" alt="Dislikes"> {{this.Downvotes}}
</p>
</div>
</div>
<div class="replies">
{{#each this.Comments}}