Skip to content

Commit

Permalink
fix post images and dropdown voter list style
Browse files Browse the repository at this point in the history
  • Loading branch information
timeholes committed May 15, 2018
1 parent 30588e3 commit 9bf170d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/components/chains/post/DropdownVotes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default {
<div class="dropdown post-view__voters">
<ul class="post-view__voter-list">
<li class="post-view__voter" v-for="vote in votesWithFiatAndResort" :key="vote.voter">
<router-link tag="a" :to="{name:'chain-account-view', params:{chain, username:vote.voter}}" class="link">
<router-link tag="a" :to="{name:'chain-account-view', params:{chain, username:vote.voter}}" class="post-view__voter-name link">
{{vote.voter}}
</router-link>
<span class="post-view__voter-amount currency" v-if="!isDislike && !hideFiat && !vote.fiat.isZero">{{vote.fiat.string}}</span>
Expand Down
4 changes: 2 additions & 2 deletions client/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2705,11 +2705,12 @@ hr {

.post-view__voter-name {
padding: 0;
margin-bottom: 2px;
}

.post-view__voter-amount {
color: #818888;
margin-left: 16px;
margin-left: 12px;
}

.post-view__voters-all {
Expand Down Expand Up @@ -3117,7 +3118,6 @@ hr {
width: auto;
max-width: 100%;
height: auto;
max-height: 600px;
}

.markdown blockquote {
Expand Down

0 comments on commit 9bf170d

Please sign in to comment.