aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_panel/user_panel.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/user_panel/user_panel.vue')
-rw-r--r--src/components/user_panel/user_panel.vue12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/components/user_panel/user_panel.vue b/src/components/user_panel/user_panel.vue
index 1a5e20fb..3d4f873d 100644
--- a/src/components/user_panel/user_panel.vue
+++ b/src/components/user_panel/user_panel.vue
@@ -1,8 +1,8 @@
<template>
<div class="user-panel">
<div v-if='user' class="panel panel-default" style="overflow: visible;">
- <user-card-content :user="user" :switcher="false"></user-card-content>
- <div class="panel-footer base00-background">
+ <user-card-content :user="user" :switcher="false" :hideBio="true"></user-card-content>
+ <div class="panel-footer">
<post-status-form v-if='user'></post-status-form>
</div>
</div>
@@ -11,3 +11,11 @@
</template>
<script src="./user_panel.js"></script>
+
+<style lang="scss">
+.user-panel {
+ .profile-panel-background .panel-heading {
+ background: transparent;
+ }
+}
+</style>