Skip to content

Commit

Permalink
chore(scrollbar): reverted theme style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomBos authored and stavares843 committed Apr 29, 2022
1 parent dfa1b7a commit b28d68c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assets/styles/base.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:root {
--app-height: 100vh;
--flair-color: '#2761fd';
--flair-color: @primary-color;
--flair-color-rgb: 39, 97, 253;
}
@flair-glow: 0 5px 14px -5px var(--flair-color);
Expand Down
4 changes: 2 additions & 2 deletions assets/styles/framework/colors.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
@darker-alt: rgb(9, 9, 12);
@black: #000;

@primary-color: var(--flair-color);
@scrollbar-color: @primary-color;
@primary-color: #2761fd;
@scrollbar-color: var(--flair-color);

@secondary-text: #dae0ff;
@text: #ffffff;
Expand Down
4 changes: 3 additions & 1 deletion components/views/chat/enhancers/Enhancers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,13 @@ export default Vue.extend({
},
},
beforeMount() {
this.openEmoji()
if (this.ui.enhancers.show) {
this.toggleEnhancers()
}
},
mounted() {
this.openEmoji()
},
methods: {
/**
* @method openEmoji DocsTODO
Expand Down

0 comments on commit b28d68c

Please sign in to comment.