💄 update messenger style

This commit is contained in:
yanyongyu
2020-09-25 01:00:28 +08:00
parent dee86ae607
commit 8b09c0be35
2 changed files with 12 additions and 9 deletions

View File

@ -1,7 +1,7 @@
<template>
<div class="qq-chat">
<v-app
><v-main>
<v-app>
<v-main>
<v-card class="elevation-6">
<v-toolbar color="primary" dark dense flat>
<v-row no-gutters>
@ -139,19 +139,15 @@ export default {
default: () => []
}
},
data: () => ({
wow: null
}),
methods: {
initWOW: function() {
this.wow = new WOW({
new WOW({
noxClass: "wow",
animateClass: "animate__animated",
offset: 0,
mobile: true,
live: true
});
this.wow.init();
}).init();
}
},
mounted() {
@ -167,6 +163,7 @@ export default {
.chat {
min-height: 150px;
overflow-x: hidden;
}
.chat-bg {
background-color: #f3f6f9;
@ -214,3 +211,9 @@ export default {
font-size: 12px;
}
</style>
<style>
.v-application--wrap {
min-height: 0 !important;
}
</style>