Skip to content

Commit

Permalink
Fix like icon being on a different line from the text on smaller scre…
Browse files Browse the repository at this point in the history
…en widths
  • Loading branch information
kommunarr committed Jan 31, 2024
1 parent e7605ef commit 6f8d1cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@
.likeCount {
margin-inline-start: 5px;
margin-inline-end: 6px;
display: flex;
gap: 3px;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@
<div
class="bottomSection"
>
<span class="likeCount"><font-awesome-icon
<div class="likeCount"><font-awesome-icon

Check warning on line 119 in src/renderer/components/ft-community-post/ft-community-post.vue

View workflow job for this annotation

GitHub Actions / lint

Expected 1 line break after opening tag (`<div>`), but no line breaks found
class="thumbs-up-icon"
:icon="['fas', 'thumbs-up']"
/> {{ voteCount }}</span>
/> {{ voteCount }}</div>

Check warning on line 122 in src/renderer/components/ft-community-post/ft-community-post.vue

View workflow job for this annotation

GitHub Actions / lint

Expected 1 line break before closing tag (`</div>`), but no line breaks found
<span class="commentCount">
<font-awesome-icon
class="comment-count-icon"
Expand Down

0 comments on commit 6f8d1cc

Please sign in to comment.