diff options
| author | shpuld <shp@cock.li> | 2017-11-18 17:41:43 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2017-11-18 17:41:43 +0200 |
| commit | a7500410ff17fbf742336d065a1dfedf87df587b (patch) | |
| tree | 11410aed1012f1b98ecabb4cb2b7fb47ec52f273 /src/components/timeline/timeline.vue | |
| parent | 3534a9a62ff9011e44a92f6ba4944155908325cb (diff) | |
Fix color inputs to wrap on mobile, fix timeline background color to not clash with panel headings.
Diffstat (limited to 'src/components/timeline/timeline.vue')
| -rw-r--r-- | src/components/timeline/timeline.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index ad741e3b..0e2ed92c 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -14,7 +14,7 @@ {{$t('timeline.up_to_date')}} </div> </div> - <div class="panel-body base02-background"> + <div class="panel-body base01-background"> <div class="timeline"> <status-or-conversation v-for="status in timeline.visibleStatuses" :key="status.id" v-bind:statusoid="status"></status-or-conversation> <a href="#" v-on:click.prevent='fetchOlderStatuses()' v-if="!timeline.loading"> @@ -30,7 +30,7 @@ {{$t('user_card.followers')}} </div> </div> - <div class="panel-body base02-background"> + <div class="panel-body base01-background"> <div class="timeline"> <user-card v-for="follower in followers" :user="follower" :showFollows="false"></user-card> </div> @@ -42,7 +42,7 @@ {{$t('user_card.followees')}} </div> </div> - <div class="panel-body base02-background"> + <div class="panel-body base01-background"> <div class="timeline"> <user-card v-for="friend in friends" :user="friend" :showFollows="true"></user-card> </div> |
