@bleedingdev/modern-js-create 3.2.0-ultramodern.57 → 3.2.0-ultramodern.58

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -2610,9 +2610,9 @@ export default function ShellFrame({ children, showCart = true }: ShellFrameProp
2610
2610
  return (
2611
2611
  <main className="min-h-screen bg-um-canvas px-4 py-5 text-um-foreground sm:px-6 lg:px-12">
2612
2612
  <BoundaryOverlay />
2613
- <div className="mx-auto flex min-h-20 max-w-7xl flex-wrap items-center justify-between gap-3 bg-white/90 px-4 py-3 shadow-xl shadow-stone-900/10 sm:px-6">
2613
+ <div className="mx-auto flex min-h-20 max-w-7xl flex-col items-start gap-3 bg-white/90 px-4 py-3 shadow-xl shadow-stone-900/10 sm:px-6 md:flex-row md:flex-wrap md:items-center md:justify-between">
2614
2614
  <Header />
2615
- <div className="ml-auto flex min-w-0 items-center gap-2">
2615
+ <div className="flex min-w-0 flex-wrap items-center gap-2 md:ml-auto">
2616
2616
  <label className="sr-only" htmlFor="ultramodern-language">
2617
2617
  {t('shell.language.switcher')}
2618
2618
  </label>
@@ -2998,7 +2998,7 @@ export default function Header() {
2998
2998
  const t = i18nInstance['t'].bind(i18nInstance);
2999
2999
 
3000
3000
  return (
3001
- <header className="flex min-w-0 flex-1 flex-wrap items-center gap-x-8 gap-y-2" data-mf-boundary="explore">
3001
+ <header className="flex min-w-0 flex-wrap items-center gap-x-8 gap-y-2 md:flex-1" data-mf-boundary="explore">
3002
3002
  <a className="whitespace-nowrap text-xl font-black tracking-normal text-stone-950 no-underline" href={\`/\${language}\`}>Acre & Iron</a>
3003
3003
  <nav aria-label={t('explore.header.navigation')} className="flex items-center gap-5">
3004
3004
  <a className="text-sm font-extrabold text-stone-900 no-underline" href={\`/\${language}/tractors\`}>{t('explore.header.machines')}</a>
package/package.json CHANGED
@@ -21,7 +21,7 @@
21
21
  "engines": {
22
22
  "node": ">=20"
23
23
  },
24
- "version": "3.2.0-ultramodern.57",
24
+ "version": "3.2.0-ultramodern.58",
25
25
  "types": "./dist/types/index.d.ts",
26
26
  "main": "./dist/index.js",
27
27
  "bin": {
@@ -41,7 +41,7 @@
41
41
  "@types/node": "^25.9.1",
42
42
  "@typescript/native-preview": "7.0.0-dev.20260527.2",
43
43
  "tsx": "^4.22.3",
44
- "@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.2.0-ultramodern.57"
44
+ "@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.2.0-ultramodern.58"
45
45
  },
46
46
  "publishConfig": {
47
47
  "registry": "https://registry.npmjs.org/",
@@ -54,6 +54,6 @@
54
54
  "start": "node ./dist/index.js"
55
55
  },
56
56
  "ultramodern": {
57
- "frameworkVersion": "3.2.0-ultramodern.57"
57
+ "frameworkVersion": "3.2.0-ultramodern.58"
58
58
  }
59
59
  }