easymde-style.css 622 B

1234567891011121314151617181920212223242526272829
  1. :global .md-editor {
  2. .editor-toolbar.fullscreen {
  3. @apply bg-gray-800 z-20;
  4. }
  5. .editor-toolbar button.active, .editor-toolbar button:hover {
  6. @apply bg-gray-900;
  7. }
  8. .md-editor-preview {
  9. @apply bg-gray-800 px-8;
  10. }
  11. .editor-statusbar {
  12. @apply text-white;
  13. }
  14. .editor-toolbar.fullscreen::after {
  15. @apply bg-none border-r-4 border-gray-900;
  16. }
  17. .editor-toolbar.fullscreen::before {
  18. @apply bg-none border-l-4 border-gray-900;
  19. }
  20. .CodeMirror-fullscreen .CodeMirror-scroll {
  21. max-height: initial !important;
  22. }
  23. }