llm-mixer / apps /llm_mixer /js /default.css
Hansimov's picture
:recycle: [Refactor] Rename Concurrent Agents to LLM Mixer
6e6dab9
raw
history blame
578 Bytes
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-gap: 10px;
}
.available-model-item {
display: flex;
align-items: center;
justify-content: center;
}
.available-model-item:hover {
background-color: #dbedff;
cursor: pointer;
}
#user-input {
resize: none;
max-height: 500px;
}
.chat-user {
color: black;
border: lightgray 1px solid;
background-color: #eafaf1;
}
.chat-assistant {
color: blue;
border: lightgray 1px solid;
}
#available-models-select {
max-width: 180px;
}