aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
blob: 91d4acd2923709ae861b9724c1f2d00be0f484ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <div>
    <div v-if="user" class="user-profile panel panel-default">
      <user-card-content :user="user" :switcher="true" :selected="timeline.viewing"></user-card-content>
    </div>
    <Timeline :title="$t('user_profile.timeline_title')" :timeline="timeline" :timeline-name="'user'" :user-id="userId"/>
  </div>
</template>

<script src="./user_profile.js"></script>

<style lang="scss">

.user-profile {
  flex: 2;
  flex-basis: 500px;
  padding-bottom: 10px;
  .panel-heading {
    background: transparent;
    flex-direction: column;
    align-items: stretch;
  }
}
</style>