aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/post/post.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/components/post/post.component.html')
-rw-r--r--src/app/components/post/post.component.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/components/post/post.component.html b/src/app/components/post/post.component.html
index d9ce657..a966d00 100644
--- a/src/app/components/post/post.component.html
+++ b/src/app/components/post/post.component.html
@@ -47,13 +47,13 @@
</section>
</main>
<aside class="rating flex-col flex-center-align-items">
- <button class="flex-col lighter-hover border-radius-small click-effect" (click)="votePost(true)">
+ <button class="upvote flex-col lighter-hover border-radius-small click-effect" (click)="votePost(true)">
<img src="/assets/icons/tabler-icon-chevron-up.svg">
</button>
- <summary>
+ <summary class="top-bot-padding-small">
{{ votesNumber }}
</summary>
- <button class="flex-col lighter-hover border-radius-small click-effect" (click)="votePost(false)">
+ <button class="downvote flex-col lighter-hover border-radius-small click-effect" (click)="votePost(false)">
<img src="/assets/icons/tabler-icon-chevron-down.svg">
</button>
</aside>