12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * Blocks
- * - These styles replace key Gutenberg Block styles with font, color, and
- * spacing with CSS-variables overrides
- * - In the future the Block styles may get compiled to individual .css
- * files and conditionally loaded
- */
- @import "audio/style";
- @import "blog-posts/style";
- @import "button/style";
- @import "code/style";
- @import "columns/style";
- @import "cover/style";
- @import "file/style";
- @import "gallery/style";
- @import "group/style";
- @import "heading/style";
- @import "image/style";
- @import "latest-comments/style";
- @import "latest-posts/style";
- @import "legacy/style"; // "Blocks" from the legacy WP editor, ie: galleries, .button class, etc.
- @import "list/style";
- @import "media-text/style";
- @import "paragraph/style";
- @import "posts-list/style";
- @import "premium-content/style";
- @import "pullquote/style";
- @import "quote/style";
- @import "search/style";
- @import "separator/style";
- @import "slideshow/style";
- @import "spacer/style";
- @import "subscription/style";
- @import "table/style";
- @import "video/style";
- @import "utilities/style"; // Import LAST to cascade properly
|