diff options
| -rw-r--r-- | src/components/user_card_content/user_card_content.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue index 2cdbb2fb..10064d5f 100644 --- a/src/components/user_card_content/user_card_content.vue +++ b/src/components/user_card_content/user_card_content.vue @@ -66,10 +66,8 @@ } }, bodyStyle () { - let color = this.$store.state.config.colors['base00'] - console.log(this.color) return { - background: 'linear-gradient(to bottom, rgba(0, 0, 0, 0), ' + color + ' 80%)' + background: 'linear-gradient(to bottom, rgba(0, 0, 0, 0), ' + this.$store.state.config.colors['base00'] + ' 80%)' } }, isOtherUser () { |
