style.css 736 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import "tailwindcss";
  2. ::-webkit-scrollbar {
  3. width: 6px;
  4. }
  5. ::-webkit-scrollbar-track {
  6. background: #f1f1f1;
  7. border-radius: 3px;
  8. }
  9. ::-webkit-scrollbar-thumb {
  10. background: #888;
  11. border-radius: 3px;
  12. }
  13. ::-webkit-scrollbar-thumb:hover {
  14. background: #555;
  15. }
  16. .msg p {
  17. @apply text-base/6;
  18. }
  19. .msg p,h1,h2,h3,h4,h5,h6 {
  20. @apply my-2;
  21. }
  22. .msg h1,h2,h3,h4,h5,h6 {
  23. @apply font-bold;
  24. }
  25. .msg li {
  26. @apply m-2;
  27. }
  28. .msg ul {
  29. @apply ml-4 list-disc;
  30. }
  31. .msg ol {
  32. @apply ml-4 list-decimal;
  33. }
  34. .msg code:not(pre>code) {
  35. @apply bg-gray-800 text-gray-200 p-1 rounded-lg;
  36. }
  37. .msg pre {
  38. @apply bg-gray-800 text-gray-200 p-4 rounded-lg overflow-x-auto;
  39. }
  40. .think {
  41. @apply text-gray-400 text-xs;
  42. }