|
|
@@ -1369,7 +1369,7 @@ function _Chat() {
|
|
|
return (
|
|
|
<div className={styles.chat} key={session.id}>
|
|
|
{
|
|
|
- isMobileScreen &&
|
|
|
+ isMobileScreen && location.pathname !== '/' &&
|
|
|
<div className="window-header" data-tauri-drag-region>
|
|
|
<div style={{ display: 'flex', alignItems: 'center' }}
|
|
|
className={`window-header-title ${styles["chat-body-title"]}`}>
|
|
|
@@ -1634,7 +1634,7 @@ function _Chat() {
|
|
|
display: 'flex',
|
|
|
justifyContent: 'center',
|
|
|
alignItems: 'center',
|
|
|
- marginRight: 20,
|
|
|
+ marginRight: 10,
|
|
|
cursor: 'pointer',
|
|
|
background: isDeepThink ? '#dee9fc' : '#f3f4f6',
|
|
|
color: isDeepThink ? '#3875f6' : '#000000',
|
|
|
@@ -1650,8 +1650,8 @@ function _Chat() {
|
|
|
<img
|
|
|
src={isDeepThink ? sdsk_selected.src : sdsk.src}
|
|
|
style={{
|
|
|
+ width: 18,
|
|
|
height: 18,
|
|
|
-
|
|
|
}}
|
|
|
/>
|
|
|
<div style={{ marginLeft: 5 }}>
|
|
|
@@ -1675,7 +1675,8 @@ function _Chat() {
|
|
|
<img
|
|
|
src={hlw.src}
|
|
|
style={{
|
|
|
- height: 18
|
|
|
+ width: 18,
|
|
|
+ height: 18,
|
|
|
}}
|
|
|
/>
|
|
|
<div style={{ marginLeft: 5 }}>
|
|
|
@@ -1684,7 +1685,7 @@ function _Chat() {
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style={{ display: 'flex', alignItems: 'center' }}>
|
|
|
- <div style={{ marginRight: 20 }}>
|
|
|
+ <div style={{ marginRight: 10 }}>
|
|
|
<Upload
|
|
|
{...uploadConfig}
|
|
|
showUploadList={false}
|
|
|
@@ -1806,7 +1807,7 @@ function _Chat() {
|
|
|
/>
|
|
|
)
|
|
|
}
|
|
|
- </div>
|
|
|
+ </div >
|
|
|
);
|
|
|
}
|
|
|
|