styles.css 529 B

1234567891011121314151617181920212223242526
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. .markdown {
  5. h1, h2, h3, h4, h5, h6, ul, ol, li { all: revert; }
  6. pre {
  7. @apply whitespace-pre-wrap rounded-lg p-2;
  8. border: 1px solid currentColor;
  9. }
  10. /* TODO: fix markdown table */
  11. }
  12. .show-on-hover {
  13. @apply md:opacity-0 md:group-hover:opacity-100;
  14. }
  15. .btn-mini {
  16. @apply cursor-pointer hover:shadow-md;
  17. }
  18. .chat-screen { max-width: 900px; }
  19. .chat-bubble-base-300 {
  20. --tw-bg-opacity: 1;
  21. --tw-text-opacity: 1;
  22. @apply bg-base-300 text-base-content;
  23. }