Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,23 @@ jobs:
# layers survived the build (the preset-env polyfill must stay off)
grep -q '@layer settings, base, elements, global, components, theme, helpers;' dist/mcss.css
! grep -q ':not(#' dist/mcss.css
# the bundle ships zero-opinion: no theme content in mcss.css
# ('@layer theme' appears in a comment; check real block syntax)
# the bundle ships zero-opinion: no theme or component content in
# mcss.css ('@layer theme'/'@layer components' appear in comments;
# check real block syntax)
! grep -q '@layer theme {' dist/mcss.css
! grep -q '@layer components {' dist/mcss.css
# the component library lives in its own bundle
grep -q '@layer components {' dist/mcss.components.css
! grep -q '@layer theme {' dist/mcss.components.css
# per-file themes self-layer so any import method lands them right
grep -q '@layer theme {' dist/css/theme.wireframe.css
grep -q '@layer theme {' dist/css/theme.default.css
# no unresolved custom media or mixins shipped
# (plain '@custom-media' appears in a comment; check real syntax)
! grep -qE '@custom-media --|media \(--' dist/mcss.css
! grep -q '@define-mixin' dist/mcss.css
! grep -qE '@custom-media --|media \(--' dist/mcss.components.css
! grep -q '@define-mixin' dist/mcss.components.css
# no asset-path coupling
! grep -q 'assets/icons' dist/mcss.css
! grep -q 'assets/icons' dist/mcss.components.css
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to mCSS. The framework follows the copy-it-you-own-it model: there is no package to update, so version numbers mark states of the repository you can copy from (each release is also a git tag).

## 1.2.0 (2026-07-27)

Core and components split: the drop-in framework file no longer bundles the component library, so sites that build their own components stop paying for it.

### Added

- **`mcss.components.css`**: the component library now has its own entry file. All 25 `component.*.css` files import there (wrapped in `@layer components`), and `dist/` gains the matching drop-ins `mcss.components.css` / `mcss.components.min.css` (~5 KB min+gzip). Import it alongside `mcss.css`, in either order: the layer statement in `mcss.css` decides priority, exactly like the existing `theme` slot.

### Breaking

- **`dist/mcss.css` / `dist/mcss.min.css` are now the framework core only** (~17 KB min+gzip): settings, base, elements, global, and helpers, plus the empty `components` and `theme` layer slots. If you use the component library, add `dist/mcss.components.min.css` next to it. Source consumers: `framework/mcss.css` no longer imports `component.*.css`; import `framework/mcss.components.css` from your entry too (see `_global.css`).

## 1.1.0 (2026-07-24)

Tiles: one container-responsive list component replacing CardList and FeatureGrid.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The library for CSS lovers.

Current version: **1.0.0** ([changelog](CHANGELOG.md)). Copy it, own it: grab [`dist/mcss.css`](dist/mcss.css) or the [source files](src/styles/framework), no package manager involved.
Current version: **1.2.0** ([changelog](CHANGELOG.md)). Copy it, own it: grab [`dist/mcss.css`](dist/mcss.css) (plus [`dist/mcss.components.css`](dist/mcss.components.css) if you want the component library) or the [source files](src/styles/framework), no package manager involved.

## Learn

Expand Down
8 changes: 4 additions & 4 deletions agents/css.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

mCSS uses **native CSS cascade layers** (`@layer`) on top of an ITCSS-inspired file structure. The framework and the docs site are split:

- **`src/styles/framework/`** — the mCSS framework. Entry point `framework/mcss.css` declares the layer order and imports every framework file into its named layer. **The layer name, not import order, decides cascade priority.**
- **`src/styles/framework/`** — the mCSS framework. Entry point `framework/mcss.css` declares the layer order and imports every core framework file into its named layer; the component library imports via its own entry, `framework/mcss.components.css` (the `components` slot is declared by `mcss.css` but filled only when the consumer imports the second entry, mirroring the `theme` slot). **The layer name, not import order, decides cascade priority.**
- **`src/styles/site/`** — docs-site-only CSS (site chrome, internal components, page styles, third-party overrides). Imported **unlayered** by `src/styles/_global.css`, after the framework.
- **`src/styles/_global.css`** — the site entry point (imported by `BaseLayout`/`DemoLayout`): framework first, then unlayered site files.
- **`src/styles/_global.css`** — the site entry point (imported by `BaseLayout`/`DemoLayout`): framework first (both entries: `mcss.css`, then `mcss.components.css`), then unlayered site files.

## Cascade rules (load-bearing)

Expand All @@ -25,7 +25,7 @@ mCSS uses **native CSS cascade layers** (`@layer`) on top of an ITCSS-inspired f
| base | `base.*` | Reset only (`base.reset.css`) |
| elements | `elements.*` | Bare HTML element styles (text, form, media) |
| global | `global.*` | Structural patterns (a11y, grid, layout, prose, wrap) |
| components | `component.*` | Library components (card, hero, notice, …), including CSS-only single-class ones (badge, button, toggle) |
| components | `component.*` | Library components (card, hero, notice, …), including CSS-only single-class ones (badge, button, toggle); imported by `mcss.components.css`, never by `mcss.css` |
| theme | `theme.*` | Swappable themes: token overrides + style rules, self-layered via `@layer theme`, activated by the consumer entry (never by `mcss.css`) |
| helpers | `help.*` | Utility overrides (colors, spacing, typography), all `!important`: beats everything, including unlayered CSS |

Expand Down Expand Up @@ -84,7 +84,7 @@ Never `transition: all` — it also transitions layout properties, so any late-a
## Adding Styles

- **One block per file.** Every block gets its own file named after it (`.featureItem` lives in `component.featureItem.css`, never inside `component.featureGrid.css`), even for small companion blocks (`component.fieldRow.css`, site `component.webring.css`).
- Framework file: create `src/styles/framework/<prefix>.<name>.css` and add `@import url(./<file>) layer(<layer>);` in the matching block of `framework/mcss.css`.
- Framework file: create `src/styles/framework/<prefix>.<name>.css` and add `@import url(./<file>) layer(<layer>);` in the matching block of `framework/mcss.css`, EXCEPT `component.*` files: those import in `framework/mcss.components.css` (the component library's own entry; `mcss.css` only declares the `components` slot).
- Theme file: create `src/styles/framework/theme.<name>.css` wrapping its own content in `@layer theme { … }`; do NOT import it in `mcss.css` (the consumer entry activates it; the dist index lists it commented out).
- Site file: create `src/styles/site/<prefix>.<name>.css` and add a plain `@import` in `_global.css` (unlayered).
- Framework CSS must never reference site-only selectors (e.g. `.expressive-code`); the site file mirrors any shared pattern itself.
Expand Down
5 changes: 3 additions & 2 deletions agents/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ src/
layouts/ Page wrappers (BaseLayout, BlogPostLayout, DocsPostLayout,
DocsComponentsLayout, DemoLayout)
styles/ All CSS (see agents/css.md)
framework/ The mCSS framework (cascade layers, entry: mcss.css)
framework/ The mCSS framework (cascade layers, entries: mcss.css for
the core, mcss.components.css for the component library)
site/ Docs-site-only CSS (unlayered)
assets/ Images, icons (assets/icons/), component assets (assets/ui/)
data/ Shared static config/data arrays (e.g. docsNav.js)
Expand All @@ -28,7 +29,7 @@ src/
| --------------------- | --------------------------------- | ----------------------------------------------------------------------- |
| New page route | `src/pages/` | — |
| New reusable UI | `src/components/` | If it needs CSS: add `component.<name>.css` (see rows below) |
| New library component style | `src/styles/framework/component.<name>.css` | Import with `layer(components)` in `framework/mcss.css` |
| New library component style | `src/styles/framework/component.<name>.css` | Import with `layer(components)` in `framework/mcss.components.css` (never in `mcss.css`) |
| New site-only style | `src/styles/site/<prefix>.<name>.css` | Import (unlayered) in `_global.css` |
| New blog post | `src/content/blog/` | Match schema (see agents/content.md) |
| New doc page | `src/content/docs/` | Match schema (see agents/content.md) |
Expand Down
2 changes: 1 addition & 1 deletion dist/css/base.reset.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.avatar.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.badge.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.banner.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.breadcrumbs.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.button.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.card.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.faq.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.featureItem.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.field.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.fieldRow.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.footer.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.header.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.hero.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.notice.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.pagination.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.prevNext.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.pricing.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.readProgressBar.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.section.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.socialMedia.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.tags.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.testimonial.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.tiles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.toc.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/component.toggle.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/elements.form.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/elements.interactive.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/elements.media.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/elements.sectioning.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/elements.table.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/elements.text.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/elements.text.quotes.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/global.a11y.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/global.animation.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/global.grid.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/global.layout.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/global.prose.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/global.wrap.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/help.colors.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/help.devtools.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/help.layout.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/help.opacity.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/help.ratios.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/help.spacing.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/help.typography.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/mcss.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
@layer settings, base, elements, global, components, theme, helpers;
@import url(./base.reset.css) layer(base);
@import url(./component.avatar.css) layer(components);
Expand Down
2 changes: 1 addition & 1 deletion dist/css/settings.tokens.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
2 changes: 1 addition & 1 deletion dist/css/settings.ui.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! mCSS v1.0.0 | MIT | https://mcss.dev */
/*! mCSS v1.2.0 | MIT | https://mcss.dev */
/*
SETTINGS MEDIA QUERIES

Expand Down
Loading
Loading