12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @import "tailwindcss";
- ::-webkit-scrollbar {
- width: 6px;
- }
- ::-webkit-scrollbar-track {
- background: #f1f1f1;
- border-radius: 3px;
- }
- ::-webkit-scrollbar-thumb {
- background: #888;
- border-radius: 3px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: #555;
- }
- .msg p {
- @apply text-base/6;
- }
- .msg p,h1,h2,h3,h4,h5,h6 {
- @apply my-2;
- }
- .msg h1,h2,h3,h4,h5,h6 {
- @apply font-bold;
- }
- .msg li {
- @apply m-2;
- }
- .msg ul {
- @apply ml-4 list-disc;
- }
- .msg ol {
- @apply ml-4 list-decimal;
- }
- .msg code:not(pre>code) {
- @apply bg-gray-800 text-gray-200 p-1 rounded-lg;
- }
- .msg pre {
- @apply bg-gray-800 text-gray-200 p-4 rounded-lg overflow-x-auto;
- }
- .think {
- @apply text-gray-400 text-xs;
- }
|