@conduction/docusaurus-preset 3.25.0 → 3.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/docusaurus-preset",
3
- "version": "3.25.0",
3
+ "version": "3.25.1",
4
4
  "scripts": {
5
5
  "prepack": "node scripts/prepack-bundle-css.js"
6
6
  },
@@ -70,8 +70,11 @@
70
70
  background: var(--c-mint-500);
71
71
  flex-shrink: 0;
72
72
  }
73
- .beta { background: var(--c-cobalt-500); }
74
- .soon { background: var(--c-orange-knvb); }
73
+ /* Compound selectors (.h.beta / .h.soon) so the status colour always wins
74
+ over the default .h mint, regardless of how the CSS minifier reorders or
75
+ merges the single-class rules in the bundle. */
76
+ .h.beta { background: var(--c-cobalt-500); }
77
+ .h.soon { background: var(--c-orange-knvb); }
75
78
 
76
79
  .label {
77
80
  flex: 1;