2024-07-24 07:46:19 +00:00
|
|
|
div.main {
|
|
|
|
height: 100vh;
|
|
|
|
color: hsla(var(--foreground));
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
.suggestions {
|
2024-07-14 17:48:06 +00:00
|
|
|
display: flex;
|
2024-07-24 07:46:19 +00:00
|
|
|
overflow-x: none;
|
|
|
|
height: fit-content;
|
|
|
|
padding: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
gap: 1rem;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.inputBox {
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
border-radius: 16px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
gap: 12px;
|
|
|
|
align-content: center;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
input.inputBox {
|
|
|
|
border: none;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
input.inputBox:focus {
|
|
|
|
outline: none;
|
|
|
|
background-color: transparent;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.inputBox:focus {
|
|
|
|
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatBodyFull {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
height: 100%;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
button.inputBox {
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
background-color: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
background: linear-gradient(var(--calm-green), var(--calm-blue));
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatBody {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
height: 100%;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
.inputBox {
|
|
|
|
color: hsla(var(--foreground));
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatLayout {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
gap: 1rem;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatBox {
|
|
|
|
display: grid;
|
|
|
|
height: 100%;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.titleBar {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr auto;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatBoxBody {
|
|
|
|
display: grid;
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
grid-template-rows: auto 1fr;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
2024-07-14 17:48:06 +00:00
|
|
|
|
2024-06-22 14:42:41 +00:00
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.sidePanel {
|
|
|
|
position: fixed;
|
|
|
|
height: 100%;
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-14 17:48:06 +00:00
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
div.chatBody {
|
|
|
|
grid-template-columns: 0fr 1fr;
|
2024-07-14 17:48:06 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatBox {
|
|
|
|
padding: 0;
|
2024-07-14 17:48:06 +00:00
|
|
|
}
|
2024-07-24 07:46:19 +00:00
|
|
|
}
|
2024-07-14 17:48:06 +00:00
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
div.inputBox {
|
|
|
|
margin-bottom: 0px;
|
2024-07-14 17:48:06 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatBoxBody {
|
2024-07-14 17:48:06 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatBox {
|
|
|
|
padding: 0;
|
2024-07-14 17:48:06 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 07:46:19 +00:00
|
|
|
div.chatLayout {
|
|
|
|
gap: 0;
|
|
|
|
grid-template-columns: 1fr;
|
2024-07-14 17:48:06 +00:00
|
|
|
}
|
|
|
|
|
2024-06-22 14:42:41 +00:00
|
|
|
}
|