diff options
| author | dave <starpumadev@gmail.com> | 2019-03-03 14:15:53 -0500 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-03-03 14:15:53 -0500 |
| commit | 0ea9e4ca14efeaa71da85054bd2cd2a6a5ee33de (patch) | |
| tree | b439d0e47b05e2dc5ce7541406296947873fe12e | |
| parent | f392668b73ef7735036d25a8e37a76872b506322 (diff) | |
#418: update timeago margin to align with icons
| -rw-r--r-- | src/components/notification/notification.vue | 2 | ||||
| -rw-r--r-- | src/components/notifications/notifications.scss | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index dd6cae38..87925cfc 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -25,7 +25,7 @@ <small>{{$t('notifications.followed_you')}}</small> </span> </div> - <div> + <div class="timeago"> <router-link v-if="notification.status" :to="{ name: 'conversation', params: { id: notification.status.id } }" class="faint-link"> <timeago :since="notification.action.created_at" :auto-update="240"></timeago> </router-link> diff --git a/src/components/notifications/notifications.scss b/src/components/notifications/notifications.scss index 0aaef7a1..2240c10a 100644 --- a/src/components/notifications/notifications.scss +++ b/src/components/notifications/notifications.scss @@ -125,6 +125,10 @@ } } + .timeago { + margin-right: .2em; + } + .icon-retweet.lit { color: $fallback--cGreen; color: var(--cGreen, $fallback--cGreen); |
