remove scroll bar in running status

This commit is contained in:
geekgeekrun
2024-02-22 10:20:08 +08:00
parent 84b6ba79a3
commit c4453ba605
2 changed files with 24 additions and 10 deletions

View File

@@ -1,13 +1,15 @@
<template>
<div class="geek-auto-start-chat-with-boss__running-status">
<article>
<h1>👋 BOSS炸弹正在运行</h1>
<p>💬 正在为你开聊BOSS请静候佳音</p>
<p>📱 你可以在<b>手机</b> / <b>平板电脑</b>使用BOSS直聘App与为你开聊BOSS聊天</p>
<p>🍀 祝你求职顺利</p>
</article>
<el-button :disabled="isStopping" @click="handleStopButtonClick">停止开聊</el-button>
<FlyingCompanyLogoList />
<div class="tip">
<article>
<h1>👋 BOSS炸弹正在运行</h1>
<p>💬 正在为你开聊BOSS请静候佳音</p>
<p>📱 你可以在<b>手机</b> / <b>平板电脑</b>使用BOSS直聘App与为你开聊的BOSS聊天</p>
<p>🍀 祝你求职顺利</p>
</article>
<el-button :disabled="isStopping" @click="handleStopButtonClick">停止开聊</el-button>
</div>
<FlyingCompanyLogoList class="flying-company-logo-list" />
</div>
</template>
@@ -42,7 +44,12 @@ onUnmounted(() => {
<style scoped lang="scss">
.geek-auto-start-chat-with-boss__running-status {
margin: 0 auto;
max-width: 640px;
max-width: 100%;
max-height: 100%;
overflow: hidden;
.tip {
margin: 0 auto;
max-width: 640px;
}
}
</style>

View File

@@ -1,7 +1,14 @@
html, body {
--monospace-font-family: Monaco, Consolas, Menlo, monospace;
font-family: var(--monospace-font-family);
position: relative;
width: 100%;
height: 100%;
}
button, input, textarea {
font-family: inherit;
}
#app {
position: absolute;
inset: 0;
}