OpenHands/frontend/src/components/ChatInterface.css
2024-03-15 20:22:29 -04:00

62 lines
1.0 KiB
CSS

.chat-interface {
display: flex;
flex-direction: column;
height: 100%;
padding: 0px;
background-color: #252526;
}
.message-list {
flex: 1;
overflow-y: auto;
margin-bottom: 20px;
}
.message {
display: flex;
margin-bottom: 10px;
}
.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 10px;
}
.message-content {
background-color: #333333;
color: #fff;
padding: 10px;
border-radius: 5px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.input-container {
display: flex;
align-items: center;
margin-top: auto;
}
.input-container input {
flex: 1;
padding: 10px;
border: none;
border-radius: 5px;
margin-right: 10px;
background-color: #3c3c3c;
color: #fff;
}
.input-container button {
padding: 10px 20px;
background-color: #007acc;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.button-text {
font-size: 16px;
}