aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
blob: 11a61bfc95fe9556e4cfdfba64e59081a0580942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <div class="user-profile panel panel-default base00-background">
    <user-card-content :user="user"></user-card-content>
  </div>
</template>

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

<style lang="scss">

.user-profile {
  flex: 2;
  flex-basis: 500px;
}

</style>