|
|
|
.main { |
|
display: flex; |
|
flex-direction: column; |
|
height: 100vh; |
|
overflow: hidden; |
|
} |
|
|
|
|
|
.messages { |
|
flex-grow: 1; |
|
overflow-y: scroll; |
|
padding: 10px; |
|
margin-bottom: 60px; |
|
} |
|
|
|
.messages pre, .messages code { |
|
white-space: pre-wrap; |
|
word-break: break-word; |
|
overflow-wrap: break-word; |
|
} |
|
|
|
|
|
.message { |
|
} |
|
|
|
|
|
.inputContainer { |
|
background-color: #aaa; |
|
background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 50%, transparent 50%), |
|
linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px); |
|
background-size: 2px 2px, 4px 4px; |
|
position: fixed; |
|
bottom: 0; |
|
left: 0; |
|
right: 0; |
|
display: flex; |
|
justify-content: space-between; |
|
padding: 10px; |
|
z-index: 1000; |
|
} |
|
|
|
|
|
.form { |
|
display: flex; |
|
width: 100%; |
|
} |
|
|
|
|
|
.input { |
|
flex-grow: 1; |
|
margin-right: 10px; |
|
font-size: 16px; |
|
} |
|
|
|
|
|
.button { |
|
|
|
} |
|
|