We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6833487 commit d182c85Copy full SHA for d182c85
app/components/model-select.module.scss
@@ -55,6 +55,11 @@ input.input[type=text] {
55
}
56
57
58
+
59
+ .selected-model-family {
60
+ border-color: var(--primary);
61
+ background-color: var(--second);
62
+ }
63
64
65
.model-icon {
app/components/model-select.tsx
@@ -233,7 +233,7 @@ const ModelSelect: React.FC<ModelSearchProps> = ({
233
{Icon ? <Icon /> : <Cpu />}
234
</div>
235
236
- className={style["model-family-button"]}
+ className={`${style["model-family-button"]}${selectedFamilies.includes(key) ? " " + style["selected-model-family"] : ""}`}
237
/>
238
))}
239
0 commit comments