diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-20 09:24:21 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-20 09:24:40 +0200 |
| commit | 6ef0be3bb1f9e28dffb653011e0f3555a22b7051 (patch) | |
| tree | 31d86f65412926273e187313e4b6838dfbb235ab /src/app/components/post/post.component.html | |
| parent | bcab15752b4aca2e059b0a69006d6e132c4ca233 (diff) | |
| download | DevHive-Angular-6ef0be3bb1f9e28dffb653011e0f3555a22b7051.tar DevHive-Angular-6ef0be3bb1f9e28dffb653011e0f3555a22b7051.tar.gz DevHive-Angular-6ef0be3bb1f9e28dffb653011e0f3555a22b7051.zip | |
Fixed and updated styling of rating highlights
Diffstat (limited to 'src/app/components/post/post.component.html')
| -rw-r--r-- | src/app/components/post/post.component.html | 6 |
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> |
