Compare commits

..

2 Commits

Author SHA1 Message Date
hsiegeln
2bf4144380 fix: align sidebar section and footer icon columns, bump v0.1.56
All checks were successful
Build & Publish / publish (push) Successful in 1m48s
SonarQube Analysis / sonarqube (push) Successful in 1m58s
Section header and footer link icons were at different x-positions (9px
vs 15px) and used different wrapper widths (16px vs 18px), producing a
ragged left column where the two rows are visually adjacent.

- Drop horizontal padding from .bottom so .bottomItem sits flush to the
  sidebar edges like .treeSection, yielding a shared 9px effective left
  padding (3px transparent border + 6px inner).
- Rewrite .bottomIcon to mirror .sectionIcon: 16px flex-centered, no
  legacy font-size/text-align (obsolete for Lucide SVG icons).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-16 21:11:38 +02:00
hsiegeln
dba3aa5a85 fix: align sidebar bottomItem padding with treeSection, bump v0.1.55
All checks were successful
Build & Publish / publish (push) Successful in 1m52s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 15:34:27 +02:00
3 changed files with 9 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
<!-- gitnexus:start -->
# GitNexus — Code Intelligence
This project is indexed by GitNexus as **design-system** (1479 symbols, 2371 relationships, 24 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely.
This project is indexed by GitNexus as **design-system** (1536 symbols, 2408 relationships, 23 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely.
> If any GitNexus tool warns the index is stale, run `npx gitnexus analyze` in terminal first.

View File

@@ -1,6 +1,6 @@
{
"name": "@cameleer/design-system",
"version": "0.1.54",
"version": "0.1.56",
"type": "module",
"main": "./dist/index.es.js",
"module": "./dist/index.es.js",

View File

@@ -444,7 +444,7 @@
.bottom {
border-top: 1px solid rgba(255, 255, 255, 0.06);
padding: 6px;
padding: 6px 0;
flex-shrink: 0;
margin-top: auto;
}
@@ -453,7 +453,7 @@
display: flex;
align-items: center;
gap: 10px;
padding: 7px 12px;
padding: 7px 6px;
border-radius: var(--radius-sm);
color: var(--sidebar-muted);
font-size: 12px;
@@ -475,7 +475,9 @@
}
.bottomIcon {
font-size: 13px;
width: 18px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
width: 16px;
color: var(--sidebar-muted);
}