From 4b69f4f6ae9c8258286a6136767e80af26ee5eee Mon Sep 17 00:00:00 2001 From: missionfloyd Date: Thu, 17 Aug 2023 22:44:22 -0600 Subject: [PATCH] Fix print CSS (#3608) --- css/main.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/css/main.css b/css/main.css index 1f5bf21b..7bfd0146 100644 --- a/css/main.css +++ b/css/main.css @@ -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; + } }