This commit is contained in:
GH Action - Upstream Sync 2023-04-09 18:10:00 +00:00
commit e1a4599253
2 changed files with 17 additions and 11 deletions

View File

@ -593,6 +593,7 @@ export function Chat(props: {
}}
/>
</div>
{!isMobileScreen() && (
<div className={styles["window-action-button"]}>
<IconButton
icon={chatStore.config.tightBorder ? <MinIcon /> : <MaxIcon />}
@ -604,6 +605,7 @@ export function Chat(props: {
}}
/>
</div>
)}
</div>
<PromptToast

View File

@ -114,6 +114,10 @@ function useDragSideBar() {
};
useEffect(() => {
if (isMobileScreen()) {
return;
}
document.documentElement.style.setProperty(
"--sidebar-width",
`${limit(chatStore.config.sidebarWidth ?? 300)}px`,