Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/DomainCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ export function DomainCard({
spineClassName,
].join(' ')}
>
<div className="flex items-start gap-3">
<span className="grid shrink-0 justify-items-center gap-2">
<div className="flex items-start gap-3.5">
<span className="grid shrink-0 justify-items-center gap-2.5">
<span
className={[
'ops-domain-glyph inline-flex h-9 w-9 items-center justify-center rounded-[2px] border border-ops-border-soft bg-ops-surface-base',
Expand Down Expand Up @@ -202,7 +202,7 @@ export function DomainCard({
role="radiogroup"
aria-label={`${sector.label} status`}
aria-describedby={describedBy}
className="mt-3 grid grid-cols-3 gap-2"
className="mt-3 grid grid-cols-3 gap-2.5"
>
{STATUS_OPTIONS.map((option, optionIndex) => {
const content = getStatusContent(option);
Expand Down
2 changes: 1 addition & 1 deletion src/components/HeaderTelemetry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function TelemetryChip({
return (
<div
className={[
'ops-telemetry-chip min-h-[var(--ops-chip-min-h-lg)] px-3 py-3.5 text-left lg:px-4',
'ops-telemetry-chip min-h-[var(--ops-chip-min-h-lg)] px-3.5 py-4 text-left lg:px-4',
isShimmering ? 'ops-telemetry-chip-shimmer' : '',
isAttention ? 'ops-telemetry-chip-attention' : '',
isPrimary ? 'ops-telemetry-chip-primary' : '',
Expand Down
4 changes: 2 additions & 2 deletions src/features/checkin/TodayPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function DayCompletionRollup({
return (
<div
className={[
'ops-day-rollup tactical-subpanel-strong mb-4 grid gap-4 p-4 sm:p-5 lg:grid-cols-[auto_minmax(0,1fr)] lg:items-center',
'ops-day-rollup ops-rollup-spine tactical-subpanel-strong mb-4 grid gap-4 p-4 sm:p-5 lg:grid-cols-[auto_minmax(0,1fr)] lg:items-center',
isComplete ? 'ops-day-rollup-complete ops-complete-badge' : '',
].join(' ')}
>
Expand Down Expand Up @@ -235,7 +235,7 @@ export function TodayPanel({
</div>
) : null}

<div className="ops-flat-panel mb-4 px-4 py-3">
<div className="ops-direct-select-brief ops-flat-panel-strong mb-4 px-4 py-3">
<p
id={directSelectHintId}
className="text-sm leading-6 text-ops-text-secondary lg:text-base lg:leading-7"
Expand Down
4 changes: 2 additions & 2 deletions src/features/export/exportPanelShared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function AccordionSection({
].join(' ')}
>
<span className="ops-export-accordion-cap clip-notched ops-notch-chip shrink-0" />
<span className="grid min-w-0 flex-1 gap-3 sm:grid-cols-[minmax(0,1fr)_auto] sm:items-center">
<span className="grid min-w-0 flex-1 grid-cols-[minmax(0,1fr)_auto] items-start gap-3 sm:items-center">
<span className="min-w-0">
<span className="ops-eyebrow block text-xs font-semibold text-ops-text-muted">
{title}
Expand All @@ -64,7 +64,7 @@ export function AccordionSection({
</span>
</span>
{statusChip ? (
<span className="flex shrink-0 sm:justify-end">{statusChip}</span>
<span className="flex shrink-0 justify-end">{statusChip}</span>
) : null}
</span>
</button>
Expand Down
Loading
Loading