Spaces:
Build error
Build error
File size: 1,207 Bytes
3c29545 | 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 | /* Additional custom styles if needed */
/* Message content styling */
.prose {
color: #374151;
line-height: 1.75;
}
.prose p {
margin-bottom: 1rem;
}
.prose a {
color: #6366f1;
text-decoration: underline;
}
.prose a:hover {
color: #4f46e5;
}
.prose img {
max-width: 100%;
height: auto;
border-radius: 0.5rem;
}
.prose table {
width: 100%;
border-collapse: collapse;
margin: 1rem 0;
}
.prose th,
.prose td {
border: 1px solid #e5e7eb;
padding: 0.75rem;
text-align: left;
}
.prose th {
background-color: #f9fafb;
font-weight: 600;
}
/* Loading skeleton */
.skeleton {
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
/* Custom scrollbar for message content */
.prose::-webkit-scrollbar {
width: 6px;
}
.prose::-webkit-scrollbar-track {
background: #f1f5f9;
}
.prose::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
.prose::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
} |