chore: bigger buttons on mobile device

This commit is contained in:
Yifei Zhang 2023-03-20 16:51:20 +00:00
parent ca679e86b4
commit 173fe0d7e3
3 changed files with 17 additions and 7 deletions

View File

@ -30,6 +30,12 @@
align-items: center;
}
@media only screen and (max-width: 600px) {
.icon-button {
padding: 16px;
}
}
@mixin dark-button {
div:not(:global(.no-dark))>.icon-button-icon {
filter: invert(0.5);

View File

@ -198,7 +198,7 @@ export function Chat(props: { showSideBar?: () => void }) {
return (
<div className={styles.chat} key={session.id}>
<div className={styles["window-header"]}>
<div className={styles["window-header-title"]}>
<div className={styles["window-header-title"]} onClick={props?.showSideBar}>
<div className={styles["window-header-main-title"]}>{session.topic}</div>
<div className={styles["window-header-sub-title"]}>
{Locale.Chat.SubTitle(session.messages.length)}
@ -343,7 +343,7 @@ function showMemoryPrompt(session: ChatSession) {
}
export function Home() {
const [createNewSession] = useChatStore((state) => [state.newSession]);
const [createNewSession, currentIndex, removeSession] = useChatStore((state) => [state.newSession, state.currentSessionIndex, state.removeSession]);
const loading = !useChatStore?.persist?.hasHydrated();
const [showSideBar, setShowSideBar] = useState(true);
@ -364,7 +364,6 @@ export function Home() {
>
<div
className={styles.sidebar + ` ${showSideBar && styles["sidebar-show"]}`}
onClick={() => setShowSideBar(false)}
>
<div className={styles["sidebar-header"]}>
<div className={styles["sidebar-title"]}>ChatGPT Next</div>
@ -378,7 +377,10 @@ export function Home() {
<div
className={styles["sidebar-body"]}
onClick={() => setOpenSettings(false)}
onClick={() => {
setOpenSettings(false)
setShowSideBar(false)
}}
>
<ChatList />
</div>
@ -388,7 +390,11 @@ export function Home() {
<div className={styles["sidebar-action"] + " " + styles.mobile}>
<IconButton
icon={<CloseIcon />}
onClick={() => setShowSideBar(!showSideBar)}
onClick={() => {
if (confirm('删除选中的对话?')) {
removeSession(currentIndex)
}
}}
/>
</div>
<div className={styles["sidebar-action"]}>

View File

@ -58,8 +58,6 @@
border: 0;
}
.modal-container {
box-shadow: var(--card-shadow);
background-color: var(--white);