style-editor.scss 607 B

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