@xenide-io/the-old-ui-theme 0.9.4 → 0.9.5

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/dist/suite.js CHANGED
@@ -4730,7 +4730,9 @@ function SuiteSidebar({
4730
4730
  className: cn(
4731
4731
  "shrink-0 border-t border-ph-border",
4732
4732
  surface ? "bg-ph-surface" : "bg-ph-canvas",
4733
- collapsed ? "p-1.5" : "p-3"
4733
+ // Trim only the bottom inset: the 32px avatar sits inside a 40px
4734
+ // trigger, so even padding read top-heavy once the avatar shrank.
4735
+ collapsed ? "px-1.5 pt-1.5 pb-1" : "px-3 pt-3 pb-2"
4734
4736
  ),
4735
4737
  children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
4736
4738
  "div",
package/dist/suite.mjs CHANGED
@@ -3754,7 +3754,9 @@ function SuiteSidebar({
3754
3754
  className: cn2(
3755
3755
  "shrink-0 border-t border-ph-border",
3756
3756
  surface ? "bg-ph-surface" : "bg-ph-canvas",
3757
- collapsed ? "p-1.5" : "p-3"
3757
+ // Trim only the bottom inset: the 32px avatar sits inside a 40px
3758
+ // trigger, so even padding read top-heavy once the avatar shrank.
3759
+ collapsed ? "px-1.5 pt-1.5 pb-1" : "px-3 pt-3 pb-2"
3758
3760
  ),
3759
3761
  children: /* @__PURE__ */ jsxs19(
3760
3762
  "div",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenide-io/the-old-ui-theme",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Props-driven React components and theme tokens inspired by classic interface design — optimized for Next.js apps and internal tools.",
5
5
  "author": "Xenide",
6
6
  "license": "MIT",
@@ -320,7 +320,9 @@ export function SuiteSidebar({
320
320
  className={cn(
321
321
  "shrink-0 border-t border-ph-border",
322
322
  surface ? "bg-ph-surface" : "bg-ph-canvas",
323
- collapsed ? "p-1.5" : "p-3",
323
+ // Trim only the bottom inset: the 32px avatar sits inside a 40px
324
+ // trigger, so even padding read top-heavy once the avatar shrank.
325
+ collapsed ? "px-1.5 pt-1.5 pb-1" : "px-3 pt-3 pb-2",
324
326
  )}
325
327
  >
326
328
  <div