easymde-style.css 517 B

12345678910111213141516171819202122232425
  1. :global .md-editor {
  2. .editor-toolbar.fullscreen {
  3. @apply bg-gray-800;
  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;
  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. }