65 lines
989 B
CSS
65 lines
989 B
CSS
.set-row input {
|
|
width: 60px;
|
|
display: inline-block;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.set-row label {
|
|
display: inline;
|
|
margin-right: 0.25rem;
|
|
}
|
|
|
|
.set-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.chat-messages {
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.chat-message {
|
|
margin-bottom: 1rem;
|
|
padding: 0.75rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.chat-message.user {
|
|
background: var(--card-background-color);
|
|
text-align: right;
|
|
}
|
|
|
|
.chat-message.assistant {
|
|
background: var(--card-sectionning-background-color);
|
|
}
|
|
|
|
.chat-input {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.chat-input textarea {
|
|
width: 100%;
|
|
resize: vertical;
|
|
min-height: 2.5rem;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.chat-input button {
|
|
width: auto;
|
|
align-self: flex-end;
|
|
padding: 0.25rem 1rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.chat-status {
|
|
margin-top: 0.25rem;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.nav-link.active {
|
|
font-weight: bold;
|
|
}
|