mirror of
https://github.com/tiennm99/DocsGPT.git
synced 2026-05-23 10:24:08 +00:00
57 lines
831 B
CSS
57 lines
831 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
#chat-container {
|
|
height: 44rem;
|
|
background-color: white;
|
|
padding: 10px;
|
|
overflow: auto;
|
|
}
|
|
|
|
|
|
|
|
.bg-gray-200 {
|
|
background-color: #edf2f7;
|
|
}
|
|
|
|
.bg-gray-900 {
|
|
background-color: #1a202c;
|
|
}
|
|
|
|
.rounded-lg {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.shadow {
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
}
|
|
|
|
.text-gray-700 {
|
|
color: #4a5568;
|
|
}
|
|
|
|
.text-sm {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.p-4 {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.loader {
|
|
border: 16px solid #f3f3f3; /* Light grey */
|
|
border-top: 16px solid #3498db; /* Blue */
|
|
border-radius: 50%;
|
|
width: 120px;
|
|
height: 120px;
|
|
animation: spin 2s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
|