This commit is contained in:
GH Action - Upstream Sync
2023-06-27 00:45:08 +00:00
8 changed files with 48 additions and 15 deletions

View File

@@ -218,7 +218,7 @@
overscroll-behavior: none;
}
.chat-body-title {
.chat-body-main-title {
cursor: pointer;
&:hover {
@@ -226,6 +226,12 @@
}
}
@media only screen and (max-width: 600px) {
.chat-body-title {
text-align: center;
}
}
.chat-message {
display: flex;
flex-direction: row;

View File

@@ -808,9 +808,9 @@ export function Chat() {
</div>
)}
<div className="window-header-title">
<div className={`window-header-title ${styles["chat-body-title"]}`}>
<div
className={`window-header-main-title " ${styles["chat-body-title"]}`}
className={`window-header-main-title ${styles["chat-body-main-title"]}`}
onClickCapture={renameSession}
>
{!session.topic ? DEFAULT_TOPIC : session.topic}

View File

@@ -37,7 +37,7 @@ function useHotKey() {
useEffect(() => {
const onKeyDown = (e: KeyboardEvent) => {
if (e.metaKey || e.altKey || e.ctrlKey) {
if (e.altKey || e.ctrlKey) {
if (e.key === "ArrowUp") {
chatStore.nextSession(-1);
} else if (e.key === "ArrowDown") {

View File

@@ -207,7 +207,7 @@
.select-with-icon {
position: relative;
max-width: fit-content;
.select-with-icon-select {
height: 100%;
border: var(--border-in-light);
@@ -227,4 +227,4 @@
transform: translateY(-50%);
pointer-events: none;
}
}
}