Fix print CSS (#3608)

This commit is contained in:
missionfloyd 2023-08-17 22:44:22 -06:00 committed by GitHub
parent 3e7c624f8e
commit 4b69f4f6ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -350,12 +350,10 @@ div.svelte-362y77>*, div.svelte-362y77>.form>* {
position: absolute;
left: 0;
top: 0;
max-width: none;
max-height: none;
max-width: unset;
max-height: unset;
width: 100%;
height: fit-content;
display: flex;
flex-direction: column-reverse;
overflow-y: visible;
}
.message {
@ -369,4 +367,8 @@ div.svelte-362y77>*, div.svelte-362y77>.form>* {
.tab-nav {
display: none !important;
}
#chat-tab > :first-child {
max-width: unset;
}
}