Spaces:
Running
Running
File size: 2,490 Bytes
db37e88 0d455d2 db37e88 5c877fe db37e88 0d455d2 db37e88 0d455d2 db37e88 5c877fe db37e88 0d455d2 db37e88 5c877fe 0d455d2 db37e88 5c877fe a56bf2f 2e45767 5c877fe | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | html,
body {
margin: 0;
padding: 0;
overflow-x: hidden;
}
.chatContainer {
max-width: 1000px;
width: 80%;
margin: 0 auto;
display: flex;
flex-direction: column;
height: 100vh;
}
.chatContainer::-webkit-scrollbar-track {
display: none;
width: 0;
}
.chatContainer::-webkit-scrollbar {
display: none;
width: 0;
background: transparent;
}
.messageDisplay {
box-sizing: border-box;
flex-grow: 1;
overflow-y: auto;
padding-bottom: var(--spacing-md);
}
.messageDisplay::-webkit-scrollbar-track {
display: none;
width: 0;
}
.messageDisplay::-webkit-scrollbar {
display: none;
width: 0;
background: transparent;
}
.inputArea {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
width: 100%;
max-width: 1000px;
padding-bottom: var(--spacing-md);
box-sizing: border-box;
padding-top: 10px;
background-color: var(--background-surface-secondary);
flex-shrink: 0;
}
.uploadedFilesContainer {
display: flex;
flex-wrap: nowrap;
width: 100%;
justify-content: flex-start;
padding: 0 var(--spacing-md);
max-height: 150px;
-ms-overflow-style: none;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
background: transparent;
}
overflow-x: auto;
}
.errorPopup {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #ff4d4f;
color: white;
padding: 12px 18px;
border-radius: 8px;
margin-bottom: 15px;
text-align: left;
width: 100%;
box-sizing: border-box;
animation: slideIn var(--transition-speed-default) var(--bezier-custom);
}
.errorMessage {
flex-grow: 1;
}
.closeButton {
background: none;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
padding: 0 5px;
line-height: 1;
opacity: 0.7;
transition: opacity 0.2s ease;
}
.closeButton:hover {
opacity: 1;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.chatPlaceholder {
text-align: center;
color: var(--text-color-secondary);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
}
.chatPlaceholderTitle {
font-weight: bold;
margin-bottom: 0;
}
.chatPlaceholderDescription {
margin-top: 0;
} |