style-editor.scss 767 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * These styles should be loaded by the Block Editor only
  3. */
  4. // Variables
  5. @import "variables-editor";
  6. // Abstracts
  7. // - Mixins, variables and functions
  8. @import "abstracts/functions";
  9. @import "abstracts/mixins";
  10. // Base
  11. // - Reset the browser
  12. @import "base/editor";
  13. // Elements
  14. // - Styles for basic HTML elemants
  15. @import "elements/editor";
  16. // Blocks
  17. // - These styles replace key Gutenberg Block styles for fonts, colors, and
  18. // spacing with CSS-variables overrides
  19. @import "blocks/editor";
  20. // Components
  21. // - Similar to Blocks but exist outside of the "current" editor context
  22. @import "components/editor";
  23. // Vendor
  24. // - These styles override key Vendor styles for fonts, colors, and
  25. // spacing with CSS-variables overrides
  26. @import "vendors/editor";