diff --git a/src/pages/chat/components/History.tsx b/src/pages/chat/components/History.tsx
index c5833c704..7b2d95b0f 100644
--- a/src/pages/chat/components/History.tsx
+++ b/src/pages/chat/components/History.tsx
@@ -115,14 +115,22 @@ const PcSliderBar = ({
{models.length > 1 && (
-
+
+
+
)}
diff --git a/src/pages/chat/components/ModelList.tsx b/src/pages/chat/components/ModelList.tsx
index 7e6a7cb55..84f97c29b 100644
--- a/src/pages/chat/components/ModelList.tsx
+++ b/src/pages/chat/components/ModelList.tsx
@@ -7,7 +7,7 @@ const ModelList = ({ models, modelId }: { models: ModelListItemType[]; modelId:
const router = useRouter();
return (
-
+ <>
{models.map((item) => (
))}
-
+ >
);
};
diff --git a/src/pages/chat/index.module.scss b/src/pages/chat/index.module.scss
index 4dea32235..477d13f08 100644
--- a/src/pages/chat/index.module.scss
+++ b/src/pages/chat/index.module.scss
@@ -11,14 +11,18 @@
}
.newChat {
- .modelList {
+ .modelListContainer {
height: 0;
- border-radius: 6px;
overflow: hidden;
}
+ .modelList {
+ border-radius: 6px;
+ }
&:hover {
+ .modelListContainer {
+ height: 60vh;
+ }
.modelList {
- height: 50vh;
box-shadow: 0 0 5px rgba($color: #000000, $alpha: 0.05);
border: 1px solid #dee0e2;
}