diff options
| author | lambadalambda <gitgud@rogerbraun.net> | 2016-11-14 15:09:20 -0500 |
|---|---|---|
| committer | lambadalambda <gitgud@rogerbraun.net> | 2016-11-14 15:09:20 -0500 |
| commit | ce509937f677e3b272428e3a8fa98110fc77fd0d (patch) | |
| tree | 18a92533abe8d0647dadfef5411c8e9c4f295814 /src/components/status/status.vue | |
| parent | ee009f63dd2f4856f8daf29d66301f67ab8f2021 (diff) | |
| parent | 53fed694dfa4f2c4fe5c8f58ad8eb728c7720449 (diff) | |
Merge branch 'feature/retweet' into 'master'
Feature/retweet
See merge request !1
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 48c910c0..d4bcc279 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -37,9 +37,7 @@ <i class='fa icon-reply'></i> </a> </div> - <div> - <i class='fa icon-retweet'></i> - </div> + <retweet-button :status=status></retweet-button> <favorite-button :status=status></favorite-button> </div> @@ -53,7 +51,8 @@ <script src="./status.js" ></script> <style lang="scss"> - .status-el { + @import '../../_variables.scss'; + .status-el { hyphens: auto; overflow-wrap: break-word; word-wrap: break-word; @@ -68,9 +67,13 @@ margin-top: 3px; margin-bottom: 3px; } - } + } - .status-actions { + .status-actions { padding-top: 5px; - } + } + + .icon-reply:hover { + color: $blue; + } </style> |
