53fed694df
Apply different styles to reply, retweet and favorite buttons
21 lines
449 B
Vue
21 lines
449 B
Vue
<template>
|
|
<div>
|
|
<i :class='classes' class='favorite-button fa' v-on:click.prevent='favorite()'></i>
|
|
<span v-if='status.fave_num > 0'>{{status.fave_num}}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./favorite_button.js" ></script>
|
|
|
|
<style lang='scss'>
|
|
@import '../../_variables.scss';
|
|
.favorite-button {
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: $main-color;
|
|
}
|
|
}
|
|
.icon-star {
|
|
color: $main-color;
|
|
}
|
|
</style>
|