aboutsummaryrefslogtreecommitdiff
path: root/src/components/favorite_button/favorite_button.vue
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2016-11-14 21:11:27 +0100
committerRoger Braun <roger@rogerbraun.net>2016-11-14 21:11:27 +0100
commitd4284686fa791cc1a43ae058375e1d51d8f1bd5b (patch)
treeac590e54fbe6e3455022c268ed2f61933aed62bf /src/components/favorite_button/favorite_button.vue
parentaeb8868b82c767e6c8bf19aa8e6355f71941fea5 (diff)
parenta9d65a488f12968fe947418846a3942d43b424fa (diff)
Merge branch 'master' of ssh.gitgud.io:lambadalambda/pleroma-fe into feature/retweet
Diffstat (limited to 'src/components/favorite_button/favorite_button.vue')
-rw-r--r--src/components/favorite_button/favorite_button.vue15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/components/favorite_button/favorite_button.vue b/src/components/favorite_button/favorite_button.vue
index 0455c706..6eaf0607 100644
--- a/src/components/favorite_button/favorite_button.vue
+++ b/src/components/favorite_button/favorite_button.vue
@@ -7,8 +7,15 @@
<script src="./favorite_button.js" ></script>
-<style>
- .favorite-button {
- cursor: pointer
- }
+<style lang='scss'>
+ @import '../../_variables.scss';
+ .favorite-button {
+ cursor: pointer;
+ &:hover {
+ color: $main-color;
+ }
+ }
+ .icon-star {
+ color: $main-color;
+ }
</style>