File size: 578 Bytes
6e6dab9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
.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;
}
|