diff --git a/src/components/sidebar/ChatSidebar.vue b/src/components/sidebar/ChatSidebar.vue
index 4ed87dc..a353d95 100644
--- a/src/components/sidebar/ChatSidebar.vue
+++ b/src/components/sidebar/ChatSidebar.vue
@@ -33,7 +33,7 @@
{{ model.name }}
{{ model.description }}
-
+
@@ -419,13 +419,19 @@ onBeforeUnmount(() => {
min-width: 200px;
max-height: 300px;
overflow-y: auto;
- padding: 8px;
+ scrollbar-width: none;
+ -ms-overflow-style: none;
+ padding: 15px;
background: white;
border: 1px solid #e2e8f0;
border-radius: 14px;
- box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
z-index: 100;
+ &::-webkit-scrollbar {
+ display: none;
+ }
+
.dark & {
background: #1e1e2e;
border-color: #2d2d3d;
@@ -438,7 +444,7 @@ onBeforeUnmount(() => {
align-items: center;
justify-content: space-between;
width: 100%;
- padding: 12px 14px;
+ padding: 10px;
border: none;
border-radius: 10px;
background: transparent;
@@ -447,7 +453,7 @@ onBeforeUnmount(() => {
transition: all 0.15s ease;
&:hover {
- background: #f3f4f6;
+ background: #F8F9FA;
.dark & {
background: #2d2d3d;
@@ -455,10 +461,13 @@ onBeforeUnmount(() => {
}
&.active {
- background: rgba(59, 130, 246, 0.1);
+ background: #F8F9FA;
.model-name {
- color: #3b82f6;
+ color: var(---000F33, #000F33);
+ }
+ .model-desc{
+ color: var(--6-666666, #666);
}
}
}
@@ -473,7 +482,7 @@ onBeforeUnmount(() => {
.model-name {
font-size: 14px;
font-weight: 500;
- color: #1f2937;
+ color: var(--6-666666, #666);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@@ -485,7 +494,7 @@ onBeforeUnmount(() => {
.model-desc {
font-size: 12px;
- color: #9ca3af;
+ color: var(--9-999999, #999);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
diff --git a/src/components/sidebar/ConversationItem.vue b/src/components/sidebar/ConversationItem.vue
index b722e71..3d0ed4f 100644
--- a/src/components/sidebar/ConversationItem.vue
+++ b/src/components/sidebar/ConversationItem.vue
@@ -170,6 +170,7 @@ function handleDelete() {