@veluai/velu 0.2.34 → 0.2.35

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": "@veluai/velu",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "type": "module",
5
5
  "bin": "./dist/cli.js",
6
6
  "publishConfig": {
@@ -261,7 +261,7 @@ export default function PageHeader({
261
261
 
262
262
  // A configured logo replaces the mark + wordmark entirely (Mintlify-style).
263
263
  const brandBlock = (
264
- <Cluster space="var(--s-3)" align="center" className="velu-header__brand">
264
+ <Cluster space="var(--s-3)" align="center" className="velu-header__brand" style={{ flexWrap: 'nowrap' }}>
265
265
  {brand?.logo ? (
266
266
  <Logo logo={brand.logo} alt={brandLabel} />
267
267
  ) : (
@@ -83,6 +83,11 @@
83
83
  text-decoration: none;
84
84
  color: inherit;
85
85
  }
86
+ .velu-header__brand {
87
+ display: flex;
88
+ flex-wrap: nowrap;
89
+ align-items: center;
90
+ }
86
91
  .velu-header__mark {
87
92
  flex: none;
88
93
  /* 32 × 24 — exact ratio of the brand mark's viewBox. */