Merge branch 'Yidadaa:main' into hugoyue-patch-1

This commit is contained in:
hugoyue 2023-04-01 04:05:49 +08:00 committed by GitHub
commit d996fd3f2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

View File

@ -28,7 +28,7 @@ jobs:
images: yidadaa/chatgpt-next-web images: yidadaa/chatgpt-next-web
tags: | tags: |
type=raw,value=latest type=raw,value=latest
type=semver,pattern={{version}} type=ref,event=tag
- -
name: Set up QEMU name: Set up QEMU

View File

@ -218,7 +218,6 @@
flex: 1; flex: 1;
overflow: auto; overflow: auto;
padding: 20px; padding: 20px;
margin-bottom: 100px;
} }
.chat-body-title { .chat-body-title {
@ -342,9 +341,6 @@
} }
.chat-input-panel { .chat-input-panel {
position: absolute;
bottom: 0px;
display: flex;
width: 100%; width: 100%;
padding: 20px; padding: 20px;
box-sizing: border-box; box-sizing: border-box;

View File

@ -53,7 +53,7 @@
--sidebar-width: 300px; --sidebar-width: 300px;
--window-content-width: calc(100% - var(--sidebar-width)); --window-content-width: calc(100% - var(--sidebar-width));
--message-max-width: 80%; --message-max-width: 80%;
--full-height: 100vh; --full-height: 100%;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
@ -75,6 +75,9 @@
@include dark; @include dark;
} }
} }
html {
height: var(--full-height);
}
body { body {
background-color: var(--gray); background-color: var(--gray);