123456789101112131415161718192021222324252627282930313233 |
- /**
- * These styles should be loaded by the Block Editor only
- */
- // Variables
- @import "variables-editor";
- // Abstracts
- // - Mixins, variables and functions
- @import "abstracts/functions";
- @import "abstracts/mixins";
- // Base
- // - Reset the browser
- @import "base/editor";
- // Elements
- // - Styles for basic HTML elemants
- @import "elements/editor";
- // Blocks
- // - These styles replace key Gutenberg Block styles for fonts, colors, and
- // spacing with CSS-variables overrides
- @import "blocks/editor";
- // Components
- // - Similar to Blocks but exist outside of the "current" editor context
- @import "components/editor";
- // Vendor
- // - These styles override key Vendor styles for fonts, colors, and
- // spacing with CSS-variables overrides
- @import "vendors/editor";
|