2016-11-30 23:32:22 +01:00
|
|
|
<template>
|
2017-06-12 16:00:46 +02:00
|
|
|
<div v-if="user" class="user-profile panel panel-default base00-background">
|
2016-11-30 23:32:22 +01:00
|
|
|
<user-card-content :user="user"></user-card-content>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_profile.js"></script>
|
2016-12-08 09:09:21 +01:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
2017-02-22 23:08:14 +02:00
|
|
|
.user-profile {
|
|
|
|
flex: 2;
|
|
|
|
flex-basis: 500px;
|
|
|
|
}
|
2016-12-08 09:09:21 +01:00
|
|
|
|
|
|
|
</style>
|