mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-01-19 01:18:19 +08:00
💄 update messenger style
This commit is contained in:
parent
dee86ae607
commit
8b09c0be35
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="qq-chat">
|
<div class="qq-chat">
|
||||||
<v-app
|
<v-app>
|
||||||
><v-main>
|
<v-main>
|
||||||
<v-card class="elevation-6">
|
<v-card class="elevation-6">
|
||||||
<v-toolbar color="primary" dark dense flat>
|
<v-toolbar color="primary" dark dense flat>
|
||||||
<v-row no-gutters>
|
<v-row no-gutters>
|
||||||
@ -139,19 +139,15 @@ export default {
|
|||||||
default: () => []
|
default: () => []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: () => ({
|
|
||||||
wow: null
|
|
||||||
}),
|
|
||||||
methods: {
|
methods: {
|
||||||
initWOW: function() {
|
initWOW: function() {
|
||||||
this.wow = new WOW({
|
new WOW({
|
||||||
noxClass: "wow",
|
noxClass: "wow",
|
||||||
animateClass: "animate__animated",
|
animateClass: "animate__animated",
|
||||||
offset: 0,
|
offset: 0,
|
||||||
mobile: true,
|
mobile: true,
|
||||||
live: true
|
live: true
|
||||||
});
|
}).init();
|
||||||
this.wow.init();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -167,6 +163,7 @@ export default {
|
|||||||
|
|
||||||
.chat {
|
.chat {
|
||||||
min-height: 150px;
|
min-height: 150px;
|
||||||
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
.chat-bg {
|
.chat-bg {
|
||||||
background-color: #f3f6f9;
|
background-color: #f3f6f9;
|
||||||
@ -214,3 +211,9 @@ export default {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.v-application--wrap {
|
||||||
|
min-height: 0 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "nonebot2"
|
name = "nonebot2"
|
||||||
version = "2.0.0a1"
|
version = "2.0.0a2"
|
||||||
description = "An asynchronous python bot framework."
|
description = "An asynchronous python bot framework."
|
||||||
authors = ["yanyongyu <yanyongyu_1@126.com>"]
|
authors = ["yanyongyu <yanyongyu_1@126.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
Reference in New Issue
Block a user