mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-24 06:30:16 +09:00
update: modify the plugins page close button to fit the overall style
This commit is contained in:
parent
1f4ae70e0a
commit
22f43e5564
@ -223,13 +223,14 @@ export function PluginPage() {
|
|||||||
return (
|
return (
|
||||||
<ErrorBoundary>
|
<ErrorBoundary>
|
||||||
<div className={styles["plugin-page"]}>
|
<div className={styles["plugin-page"]}>
|
||||||
<div className={styles["plugin-header"]}>
|
{/* <div className={styles["plugin-header"]}>
|
||||||
<IconButton
|
<IconButton
|
||||||
icon={<LeftIcon />}
|
icon={<LeftIcon />}
|
||||||
text={Locale.NewChat.Return}
|
text={Locale.NewChat.Return}
|
||||||
onClick={() => navigate(Path.Home)}
|
onClick={() => navigate(Path.Home)}
|
||||||
></IconButton>
|
></IconButton>
|
||||||
</div>
|
</div> */}
|
||||||
|
|
||||||
<div className="window-header">
|
<div className="window-header">
|
||||||
<div className="window-header-title">
|
<div className="window-header-title">
|
||||||
<div className="window-header-main-title">
|
<div className="window-header-main-title">
|
||||||
@ -240,7 +241,15 @@ export function PluginPage() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="window-actions"></div>
|
<div className="window-actions">
|
||||||
|
<div className="window-action-button">
|
||||||
|
<IconButton
|
||||||
|
icon={<CloseIcon />}
|
||||||
|
onClick={() => navigate(Path.Home)}
|
||||||
|
bordered
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles["plugin-page-body"]}>
|
<div className={styles["plugin-page-body"]}>
|
||||||
|
Loading…
Reference in New Issue
Block a user