chore: update DS to v0.1.38, enforce 12px font size floor
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Failing after 22s
CI / docker (push) Has been skipped
CI / deploy (push) Has been skipped
CI / deploy-feature (push) Has been skipped

Update @cameleer/design-system to v0.1.38 (12px minimum font size).
Replace all 10px and 11px font sizes with 12px across 25 CSS modules
and 5 TSX inline styles to match the new DS floor.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-07 11:41:51 +02:00
parent 07f3c2584c
commit 9cbf647203
26 changed files with 93 additions and 93 deletions

View File

@@ -99,7 +99,7 @@
}
.meta {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
}
@@ -177,7 +177,7 @@
}
.hint {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
font-family: var(--font-body);
}

View File

@@ -7,7 +7,7 @@
}
.panelSectionHeader {
font-size: 11px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
@@ -28,7 +28,7 @@
}
.fieldLabel {
font-size: 10px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
@@ -41,7 +41,7 @@
border-radius: var(--radius-sm);
background: var(--bg-body);
color: var(--text-primary);
font-size: 11px;
font-size: 12px;
font-family: var(--font-mono);
outline: none;
}
@@ -54,12 +54,12 @@
display: flex;
align-items: center;
gap: 6px;
font-size: 11px;
font-size: 12px;
color: var(--text-secondary);
}
.sectionSummary {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
margin-bottom: 8px;
display: block;
@@ -73,11 +73,11 @@
.hint {
color: var(--text-faint);
font-size: 11px;
font-size: 12px;
}
.routeLabel {
font-size: 11px;
font-size: 12px;
color: var(--text-secondary);
}
@@ -116,7 +116,7 @@
}
.panelMeta {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
}

View File

@@ -42,7 +42,7 @@
}
.tableMeta {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
}
@@ -72,7 +72,7 @@
}
.detailLabel {
font-size: 10px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.8px;

View File

@@ -57,7 +57,7 @@
}
.tableMeta {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
font-family: var(--font-mono);
}

View File

@@ -239,7 +239,7 @@ export default function GroupsTab({ highlightId, onHighlightConsumed }: { highli
onChange={(e) => setNewName(e.target.value)}
/>
{duplicateGroupName && (
<span style={{ color: 'var(--error)', fontSize: 11 }}>
<span style={{ color: 'var(--error)', fontSize: 12 }}>
Group name already exists
</span>
)}

View File

@@ -29,7 +29,7 @@
}
.hint {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
font-family: var(--font-body);
}

View File

@@ -130,7 +130,7 @@ export default function RolesTab({ highlightId, onHighlightConsumed }: { highlig
onChange={(e) => setNewName(e.target.value)}
/>
{duplicateRoleName && (
<span style={{ color: 'var(--error)', fontSize: 11 }}>
<span style={{ color: 'var(--error)', fontSize: 12 }}>
Role name already exists
</span>
)}

View File

@@ -22,7 +22,7 @@
}
.entityMeta {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
font-family: var(--font-body);
margin-top: 2px;
@@ -107,7 +107,7 @@
}
.inheritedNote {
font-size: 11px;
font-size: 12px;
color: var(--text-muted);
font-style: italic;
font-family: var(--font-body);

View File

@@ -228,7 +228,7 @@ export default function UsersTab({ highlightId, onHighlightConsumed }: { highlig
/>
</div>
{duplicateUsername && (
<span style={{ color: 'var(--error)', fontSize: 11 }}>
<span style={{ color: 'var(--error)', fontSize: 12 }}>
Username already exists
</span>
)}