Skip to content

Commit 2f112ec

Browse files
committed
feat: add model config to settings
1 parent 4af8c26 commit 2f112ec

File tree

7 files changed

+516
-257
lines changed

7 files changed

+516
-257
lines changed

app/components/home.module.scss

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
.window-content {
5151
width: var(--window-content-width);
5252
height: 100%;
53+
display: flex;
54+
flex-direction: column;
5355
}
5456

5557
.mobile {
@@ -111,7 +113,8 @@
111113
overflow: auto;
112114
}
113115

114-
.chat-list {}
116+
.chat-list {
117+
}
115118

116119
.chat-item {
117120
padding: 10px 14px;
@@ -165,12 +168,12 @@
165168
opacity: 0;
166169
}
167170

168-
.chat-item:hover>.chat-item-delete {
171+
.chat-item:hover > .chat-item-delete {
169172
opacity: 0.5;
170173
right: 10px;
171174
}
172175

173-
.chat-item:hover>.chat-item-delete:hover {
176+
.chat-item:hover > .chat-item-delete:hover {
174177
opacity: 1;
175178
}
176179

@@ -182,9 +185,11 @@
182185
margin-top: 8px;
183186
}
184187

185-
.chat-item-count {}
188+
.chat-item-count {
189+
}
186190

187-
.chat-item-date {}
191+
.chat-item-date {
192+
}
188193

189194
.sidebar-tail {
190195
display: flex;
@@ -232,7 +237,7 @@
232237
animation: slide-in ease 0.3s;
233238
}
234239

235-
.chat-message-user>.chat-message-container {
240+
.chat-message-user > .chat-message-container {
236241
align-items: flex-end;
237242
}
238243

@@ -271,7 +276,7 @@
271276
border: var(--border-in-light);
272277
}
273278

274-
.chat-message-user>.chat-message-container>.chat-message-item {
279+
.chat-message-user > .chat-message-container > .chat-message-item {
275280
background-color: var(--second);
276281
}
277282

@@ -346,4 +351,4 @@
346351
align-items: center;
347352
height: 100%;
348353
width: 100%;
349-
}
354+
}

app/components/settings.module.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22

33
.settings {
44
padding: 20px;
5+
overflow: auto;
56
}
67

78
.settings-title {
89
font-size: 14px;
910
font-weight: bolder;
1011
}
1112

13+
.settings-sub-title {
14+
font-size: 12px;
15+
font-weight: normal;
16+
}
17+
1218
.avatar {
1319
cursor: pointer;
14-
}
20+
}

0 commit comments

Comments
 (0)