diff options
| author | Henry Jameson <me@hjkos.com> | 2018-03-31 21:14:36 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-04-07 16:34:11 +0300 |
| commit | aa0564406a95824cc45c815571292716b65806a1 (patch) | |
| tree | f3a282f88afe1e5ed6f9f08e0649bdf1bf2a892a /src/components/retweet_button | |
| parent | 936ca1a38cc1b9206dea8970eda6885fc7d4391d (diff) | |
getting rid of baseXX, some small fixes. Seems to be usable.
Diffstat (limited to 'src/components/retweet_button')
| -rw-r--r-- | src/components/retweet_button/retweet_button.vue | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/components/retweet_button/retweet_button.vue b/src/components/retweet_button/retweet_button.vue index 7a7ea763..7c75f3bc 100644 --- a/src/components/retweet_button/retweet_button.vue +++ b/src/components/retweet_button/retweet_button.vue @@ -1,10 +1,10 @@ <template> <div v-if="loggedIn"> - <i :class='classes' class='icon-retweet rt-active base09' v-on:click.prevent='retweet()'></i> + <i :class='classes' class='icon-retweet rt-active' v-on:click.prevent='retweet()'></i> <span v-if='status.repeat_num > 0'>{{status.repeat_num}}</span> </div> <div v-else> - <i :class='classes' class='icon-retweet base09'></i> + <i :class='classes' class='icon-retweet'></i> <span v-if='status.repeat_num > 0'>{{status.repeat_num}}</span> </div> </template> @@ -17,10 +17,12 @@ cursor: pointer; animation-duration: 0.6s; &:hover { - color: $green; + color: $green_; + color: var(--cGreen); } } .icon-retweet.retweeted { - color: $green; + color: $green_; + color: var(--cGreen); } </style> |
