forked from XiaoMo/ChatGPT-Next-Web
fix: alignment of mobile settings page title.
This commit is contained in:
parent
5f7c262759
commit
b003a374b8
@ -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;
|
||||
|
@ -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}
|
||||
|
@ -25,10 +25,6 @@
|
||||
.window-header-sub-title {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.window-actions {
|
||||
|
Loading…
Reference in New Issue
Block a user