8월 7일까지 워킹트리에만 남아 있던 미커밋 작업을 커밋한다. 여러 사본 폴더(worktree·clone)에 흩어져 있던 중간 스냅샷을 정리하기 전에 원본을 git 이력으로 고정하는 것이 목적이다. - contracts/routes/services: measurement, outcome_trajectory, rupture_repair, deliberate_practice, calibration_transfer, supervision_research, multimodal_alliance, continuous_improvement 계열 신규 모듈과 테스트 - infra/db/init: 07~16 마이그레이션(측정 기반~calibration transfer 실행) - apps/web: 세션 리뷰 카드·관리 화면·E2E 스펙 추가 - docs/ops: G0~G8 라이브 통합·배포·롤백 증거 문서와 evidence JSON/PNG - scripts: smoke·ledger·릴리스 에이전트·NAS 프리뷰 운영 스크립트 engine.public 로그 .bak과 apps/web/test-results 산출물은 커밋에서 제외했다.
832 lines
15 KiB
CSS
832 lines
15 KiB
CSS
.aic {
|
|
width: 100%;
|
|
display: grid;
|
|
gap: 16px;
|
|
color: var(--text-body);
|
|
}
|
|
|
|
.aic-head {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
padding: 2px;
|
|
}
|
|
|
|
.aic-head h1 {
|
|
margin: 7px 0 0;
|
|
color: var(--text-strong);
|
|
font-size: clamp(1.65rem, 2.4vw, 2.2rem);
|
|
line-height: 1.12;
|
|
letter-spacing: -0.035em;
|
|
}
|
|
|
|
.aic-head p {
|
|
max-width: 720px;
|
|
margin: 8px 0 0;
|
|
color: var(--text-body);
|
|
font-size: var(--fs-sm);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.aic-head__actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.aic-head__stamp {
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
text-align: right;
|
|
}
|
|
|
|
.aic-head__stamp b {
|
|
display: block;
|
|
margin-top: 2px;
|
|
color: var(--text-body);
|
|
font-family: var(--font-num);
|
|
font-weight: 650;
|
|
}
|
|
|
|
.aic-alert {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 12px 14px;
|
|
border: 1px solid color-mix(in srgb, var(--crit-solid) 34%, var(--border-subtle));
|
|
border-radius: var(--radius);
|
|
background: var(--crit-tint);
|
|
color: var(--crit-text);
|
|
font-size: var(--fs-sm);
|
|
}
|
|
|
|
.aic-source {
|
|
display: grid;
|
|
grid-template-columns: 11px minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 13px 14px;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius);
|
|
background: var(--glass-surface-inset);
|
|
box-shadow: var(--glass-inset-shadow);
|
|
backdrop-filter: var(--glass-blur);
|
|
}
|
|
|
|
.aic-source__dot {
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 50%;
|
|
background: var(--warn-solid);
|
|
box-shadow: 0 0 0 4px color-mix(in srgb, var(--warn-solid) 14%, transparent);
|
|
}
|
|
|
|
.aic-source__dot.is-live {
|
|
background: var(--pos-solid);
|
|
box-shadow: 0 0 0 4px color-mix(in srgb, var(--pos-solid) 14%, transparent);
|
|
}
|
|
|
|
.aic-source b,
|
|
.aic-source span {
|
|
display: block;
|
|
}
|
|
|
|
.aic-source b {
|
|
color: var(--text-strong);
|
|
font-size: var(--fs-sm);
|
|
}
|
|
|
|
.aic-source div > span {
|
|
margin-top: 2px;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.aic-window {
|
|
display: flex;
|
|
gap: 3px;
|
|
padding: 3px;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg-surface-2);
|
|
}
|
|
|
|
.aic-window button {
|
|
min-height: 34px;
|
|
padding: 0 11px;
|
|
border: 0;
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
font: 650 12px/1 var(--font-sans);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.aic-window button:hover {
|
|
color: var(--text-strong);
|
|
background: var(--neutral-100);
|
|
}
|
|
|
|
.aic-window button.is-active {
|
|
color: var(--text-on-accent);
|
|
background: var(--accent);
|
|
}
|
|
|
|
.aic-window button:focus-visible {
|
|
outline: 2px solid var(--focus-ring);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.aic-ledger {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
overflow: hidden;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius);
|
|
background: var(--bg-surface);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.aic-ledger article {
|
|
min-width: 0;
|
|
padding: 14px;
|
|
}
|
|
|
|
.aic-ledger article + article {
|
|
border-left: 1px solid var(--border-subtle);
|
|
}
|
|
|
|
.aic-ledger span,
|
|
.aic-ledger small {
|
|
display: block;
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.aic-ledger span {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.aic-ledger b {
|
|
display: block;
|
|
margin: 8px 0 5px;
|
|
overflow: hidden;
|
|
color: var(--text-strong);
|
|
font-family: var(--font-num);
|
|
font-size: clamp(1.2rem, 2vw, 1.65rem);
|
|
line-height: 1;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.aic-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
|
|
align-items: start;
|
|
gap: 16px;
|
|
}
|
|
|
|
.aic-column {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
.aic-panel {
|
|
min-width: 0;
|
|
padding: 17px;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius);
|
|
background: var(--glass-surface-strong);
|
|
box-shadow: var(--glass-inset-shadow);
|
|
backdrop-filter: var(--glass-blur);
|
|
}
|
|
|
|
.aic-panel__head {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
/* eyebrow 를 영문 대문자에서 한글로 바꿨다. 자간 0.12em 은 영문 대문자 전용
|
|
트래킹이라 한글에서는 글자가 흩어져 보이고, 10px 은 한글 판독 하한 아래라
|
|
자간을 좁히고 11px 로 올린다. (uppercase 변환은 원래 없었다) */
|
|
.aic-eyebrow {
|
|
display: block;
|
|
color: var(--accent-deep);
|
|
font: 750 11px/1.3 var(--font-sans);
|
|
letter-spacing: 0.01em;
|
|
text-transform: none;
|
|
}
|
|
|
|
.aic-panel h2 {
|
|
margin: 5px 0 0;
|
|
color: var(--text-strong);
|
|
font-size: 1rem;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
/* 중복 eyebrow 를 지운 패널은 제목이 첫 줄이므로 윗여백을 없애 우측 배지와 정렬한다. */
|
|
.aic-panel__head h2:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.aic-panel__meta {
|
|
color: var(--text-muted);
|
|
font: 600 11px/1.4 var(--font-num);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.aic-status,
|
|
.aic-runtime {
|
|
flex: 0 0 auto;
|
|
padding: 5px 8px;
|
|
border-radius: 999px;
|
|
background: var(--neutral-100);
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
font-weight: 750;
|
|
}
|
|
|
|
.aic-status--ok,
|
|
.aic-runtime--ok {
|
|
background: var(--pos-tint);
|
|
color: var(--pos-text);
|
|
}
|
|
|
|
.aic-status--warn,
|
|
.aic-status--disabled,
|
|
.aic-runtime--degraded {
|
|
background: var(--warn-tint);
|
|
color: var(--warn-text);
|
|
}
|
|
|
|
.aic-status--exceeded,
|
|
.aic-runtime--down {
|
|
background: var(--crit-tint);
|
|
color: var(--crit-text);
|
|
}
|
|
|
|
.aic-budget__split {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 28px;
|
|
}
|
|
|
|
.aic-metricline {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.aic-metricline b {
|
|
color: var(--text-strong);
|
|
font-family: var(--font-num);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.aic-track {
|
|
height: 7px;
|
|
margin: 10px 0 8px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background: var(--neutral-100);
|
|
}
|
|
|
|
.aic-track > span {
|
|
display: block;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
background: var(--warn-solid);
|
|
}
|
|
|
|
.aic-track--coverage > span {
|
|
background: var(--accent-bright);
|
|
}
|
|
|
|
.aic-budget p,
|
|
.aic-note {
|
|
margin: 0;
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.aic-chart {
|
|
display: grid;
|
|
grid-auto-columns: minmax(46px, 1fr);
|
|
grid-auto-flow: column;
|
|
align-items: end;
|
|
gap: 8px;
|
|
min-height: 205px;
|
|
overflow-x: auto;
|
|
padding: 4px 2px 8px;
|
|
}
|
|
|
|
.aic-chart__day {
|
|
min-width: 46px;
|
|
display: grid;
|
|
grid-template-rows: 20px 126px auto auto;
|
|
gap: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* 9px 은 숫자 판독이 불가능해 11px 로 올린다. 금액이 소수 2자리로 짧아져
|
|
같은 칸 폭에서도 잘리지 않는다. */
|
|
.aic-chart__value,
|
|
.aic-chart__date,
|
|
.aic-chart__day small {
|
|
overflow: hidden;
|
|
color: var(--text-muted);
|
|
font: 600 11px/1.3 var(--font-num);
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.aic-chart__rail {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
border-bottom: 1px solid var(--border-strong);
|
|
background-image: linear-gradient(to top, color-mix(in srgb, var(--border-subtle) 60%, transparent) 1px, transparent 1px);
|
|
background-size: 100% 25%;
|
|
}
|
|
|
|
.aic-chart__bar {
|
|
width: min(24px, 68%);
|
|
min-height: 3px;
|
|
border-radius: 3px 3px 0 0;
|
|
background: var(--accent-bright);
|
|
transition: height var(--dur-base) var(--ease-out);
|
|
}
|
|
|
|
.aic-chart__date {
|
|
color: var(--text-body);
|
|
}
|
|
|
|
.aic-empty {
|
|
display: grid;
|
|
min-height: 112px;
|
|
place-items: center;
|
|
padding: 18px;
|
|
border: 1px dashed var(--border-strong);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text-muted);
|
|
font-size: var(--fs-sm);
|
|
text-align: center;
|
|
}
|
|
|
|
.aic-table-wrap {
|
|
max-width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.aic-table {
|
|
width: 100%;
|
|
min-width: 720px;
|
|
border-collapse: collapse;
|
|
font: 600 11px/1.4 var(--font-num);
|
|
}
|
|
|
|
.aic-table th,
|
|
.aic-table td {
|
|
padding: 10px 9px;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.aic-table th {
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.aic-table th:first-child,
|
|
.aic-table td:first-child {
|
|
text-align: left;
|
|
}
|
|
|
|
.aic-table tbody tr:last-child td {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.aic-table td {
|
|
color: var(--text-body);
|
|
}
|
|
|
|
.aic-table td:first-child b,
|
|
.aic-table td:first-child span {
|
|
display: block;
|
|
}
|
|
|
|
.aic-table td:first-child b {
|
|
max-width: 220px;
|
|
overflow: hidden;
|
|
color: var(--text-strong);
|
|
font-family: var(--font-sans);
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.aic-table td:first-child span {
|
|
margin-top: 2px;
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
}
|
|
|
|
.aic-table td.aic-cost-cell span,
|
|
.aic-table td.aic-cost-cell small,
|
|
.aic-table td.aic-token-cell span,
|
|
.aic-table td.aic-token-cell small {
|
|
display: block;
|
|
}
|
|
|
|
.aic-table td.aic-cost-cell small,
|
|
.aic-table td.aic-token-cell small {
|
|
margin-top: 1px;
|
|
color: var(--text-muted);
|
|
font: 700 9px/1.3 var(--font-sans);
|
|
}
|
|
|
|
.aic-share {
|
|
display: inline-block;
|
|
width: 36px;
|
|
height: 4px;
|
|
margin-right: 6px;
|
|
overflow: hidden;
|
|
vertical-align: middle;
|
|
border-radius: 999px;
|
|
background: var(--neutral-100);
|
|
}
|
|
|
|
.aic-share > span {
|
|
display: block;
|
|
height: 100%;
|
|
background: var(--clay);
|
|
}
|
|
|
|
.aic-engine {
|
|
border-color: color-mix(in srgb, var(--accent) 34%, var(--border-subtle));
|
|
}
|
|
|
|
.aic-engine .vg-field + .vg-field {
|
|
margin-top: 13px;
|
|
}
|
|
|
|
.aic-engine .vg-field__label {
|
|
color: var(--text-strong);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.aic-engine .vg-field__hint {
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
}
|
|
|
|
.aic-engine .vg-input,
|
|
.aic-engine .aic-select {
|
|
width: 100%;
|
|
font-family: var(--font-num);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.aic-select {
|
|
min-height: 40px;
|
|
appearance: auto;
|
|
}
|
|
|
|
.aic-select:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.64;
|
|
}
|
|
|
|
.aic-capability {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-top: 14px;
|
|
padding: 11px;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg-surface-2);
|
|
}
|
|
|
|
.aic-capability.is-ready {
|
|
border-color: color-mix(in srgb, var(--accent) 36%, var(--border-subtle));
|
|
background: var(--accent-tint);
|
|
}
|
|
|
|
.aic-capability.is-unavailable {
|
|
border-color: color-mix(in srgb, var(--crit-solid) 42%, var(--border-subtle));
|
|
background: var(--crit-tint);
|
|
}
|
|
|
|
.aic-capability > div {
|
|
min-width: 0;
|
|
}
|
|
|
|
.aic-capability b,
|
|
.aic-capability span {
|
|
display: block;
|
|
}
|
|
|
|
.aic-capability b {
|
|
color: var(--text-strong);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.aic-capability span {
|
|
margin-top: 3px;
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.aic-capability .vg-btn {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.aic-config-meta {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0;
|
|
margin: 16px 0 0;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.aic-config-meta div {
|
|
min-width: 0;
|
|
padding: 9px;
|
|
}
|
|
|
|
.aic-config-meta div:nth-child(even) {
|
|
border-left: 1px solid var(--border-subtle);
|
|
}
|
|
|
|
.aic-config-meta div:nth-child(n + 3) {
|
|
border-top: 1px solid var(--border-subtle);
|
|
}
|
|
|
|
.aic-config-meta dt,
|
|
.aic-config-meta dd {
|
|
margin: 0;
|
|
}
|
|
|
|
.aic-config-meta dt {
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
}
|
|
|
|
.aic-config-meta dd {
|
|
margin-top: 3px;
|
|
overflow: hidden;
|
|
color: var(--text-body);
|
|
font: 600 10px/1.4 var(--font-num);
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.aic-engine__foot {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.aic-engine__foot > span {
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
overflow: hidden;
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.aic-cache-score {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 8px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.aic-cache-score b {
|
|
color: var(--text-strong);
|
|
font: 750 2rem/1 var(--font-num);
|
|
}
|
|
|
|
.aic-cache-score span {
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.aic-mini-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 1px;
|
|
margin: 0 0 13px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--border-subtle);
|
|
}
|
|
|
|
.aic-mini-grid div {
|
|
padding: 9px;
|
|
background: var(--bg-surface);
|
|
}
|
|
|
|
.aic-mini-grid dt,
|
|
.aic-mini-grid dd {
|
|
margin: 0;
|
|
}
|
|
|
|
.aic-mini-grid dt {
|
|
color: var(--text-muted);
|
|
font-size: 9px;
|
|
}
|
|
|
|
.aic-mini-grid dd {
|
|
margin-top: 4px;
|
|
color: var(--text-strong);
|
|
font: 700 13px/1 var(--font-num);
|
|
}
|
|
|
|
.aic-integrity {
|
|
display: grid;
|
|
gap: 9px;
|
|
margin: 0;
|
|
}
|
|
|
|
.aic-integrity div {
|
|
display: grid;
|
|
grid-template-columns: minmax(70px, 0.55fr) minmax(0, 1fr);
|
|
gap: 2px 10px;
|
|
padding-bottom: 9px;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
}
|
|
|
|
.aic-integrity div:last-child {
|
|
padding-bottom: 0;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.aic-integrity dt,
|
|
.aic-integrity dd {
|
|
margin: 0;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.aic-integrity dt {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.aic-integrity dd {
|
|
overflow: hidden;
|
|
color: var(--text-strong);
|
|
font-weight: 700;
|
|
text-align: right;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.aic-integrity span {
|
|
grid-column: 2;
|
|
color: var(--text-muted);
|
|
font: 600 9px/1.3 var(--font-num);
|
|
text-align: right;
|
|
}
|
|
|
|
@media (max-width: 1180px) {
|
|
.aic-grid {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.aic-column--side {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.aic-engine {
|
|
grid-row: span 2;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.aic-head {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.aic-head__actions {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.aic-source {
|
|
grid-template-columns: 11px minmax(0, 1fr);
|
|
}
|
|
|
|
.aic-window {
|
|
grid-column: 1 / -1;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.aic-ledger {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.aic-ledger article + article {
|
|
border-left: 0;
|
|
}
|
|
|
|
.aic-ledger article:nth-child(even) {
|
|
border-left: 1px solid var(--border-subtle);
|
|
}
|
|
|
|
.aic-ledger article:nth-child(n + 3) {
|
|
border-top: 1px solid var(--border-subtle);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.aic-head__stamp {
|
|
text-align: left;
|
|
}
|
|
|
|
.aic-budget__split,
|
|
.aic-column--side {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.aic-budget__split {
|
|
gap: 18px;
|
|
}
|
|
|
|
.aic-engine {
|
|
grid-row: auto;
|
|
}
|
|
|
|
.aic-ledger {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.aic-ledger article:nth-child(even) {
|
|
border-left: 0;
|
|
}
|
|
|
|
.aic-ledger article:nth-child(n + 2) {
|
|
border-top: 1px solid var(--border-subtle);
|
|
}
|
|
|
|
.aic-ledger article {
|
|
display: grid;
|
|
grid-template-columns: minmax(100px, 0.75fr) minmax(0, 1fr);
|
|
align-items: baseline;
|
|
gap: 4px 10px;
|
|
}
|
|
|
|
.aic-ledger b {
|
|
margin: 0;
|
|
text-align: right;
|
|
}
|
|
|
|
.aic-ledger small {
|
|
grid-column: 2;
|
|
text-align: right;
|
|
}
|
|
|
|
.aic-panel {
|
|
padding: 14px;
|
|
}
|
|
|
|
.aic-panel__head {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.aic-engine__foot {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.aic-engine__foot .vg-btn {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.aic-chart__bar {
|
|
transition: none;
|
|
}
|
|
}
|